Skip to content

Instantly share code, notes, and snippets.

View Cvar1984's full-sized avatar
⚠️
This account is under NSA investigation

Bellatrix Lugosi Cvar1984

⚠️
This account is under NSA investigation
View GitHub Profile
/* XerXes - Most powerful dos tool - THN (http://www.thehackernews.com) */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdint.h>
#include <unistd.h>
#include <netdb.h>
#include <signal.h>
#include <sys/socket.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <curl/curl.h>
int main(int argc, char *argv[])
{
if(argc != 2) {
fprintf(stderr,"Usage : %s <number phone>\n",argv[0]);
exit(1);
/* "He's A Pirate" / "Pirates of the Caribbean" Theme Song Playing
* By Xitang 2016.06.27
* Youtube in Action: https://youtu.be/sjPAj1lXgtk
*
* INSTRUCTION: Hook up Pin 10 to the positive side of a buzzer or a microphone, hook up
* any resistor to the negative side of a buzzer (to limit current & volume & to protect the pin),
* and then connect the other end of the resistor to ground pin. Upload the sketch and enjoy!
*
* Music notes of the song obtained from Easy Music (Great website)
* Link: http://easymusic.altervista.org/recorder-hes-a-pirate-pirates-of-caribbean-sheet-music-guitar-chords/
@Cvar1984
Cvar1984 / bd.php
Last active January 13, 2019 14:43
basic shell backdoor
<?php
/*
* backdoor.php
*
* Copyright 2018 Cvar1984 <cvar1984@yourhead>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
if [ -x /data/data/com.termux/files/usr/libexec/termux/command-not-found ]; then
command_not_found_handle() {
/data/data/com.termux/files/usr/libexec/termux/command-not-found "$1"
}
fi
PS1="\[\033[0;32m\]\u@\h\[\033[0;34m\]:\w\[\033[00m\]\$ "
eval "`dircolors`"
alias ls='ls --color=auto'
alias ll='ls --color=auto -lshaF'
@Cvar1984
Cvar1984 / recursive_copy_files.php
Created October 30, 2019 05:31 — forked from gserrano/recursive_copy_files.php
PHP Recursive copy files
/*
* This function copy $source directory and all files
* and sub directories to $destination folder
*/
function recursive_copy($src,$dst) {
$dir = opendir($src);
@mkdir($dst);
while(( $file = readdir($dir)) ) {
if (( $file != '.' ) && ( $file != '..' )) {
<?php
/*
* Masukin @abcdtest_bot ke group telegram lu
* jadi in admin
* jalanin script ini
* kalo ga tau caranya modar aja lu tolol
* auto bantai siapa aja yg nge chat di group
* do with your own risk
* salam ubur - ubur
*/
# for termux
# This is the main Apache HTTP server configuration file. It contains the
# configuration directives that give the server its instructions.
# See <URL:http://httpd.apache.org/docs/2.4/> for detailed information.
# In particular, see
# <URL:http://httpd.apache.org/docs/2.4/mod/directives.html>
# for a discussion of each configuration directive.
#
# Do NOT simply read the instructions in here without understanding
# what they do. They're here only as hints or reminders. If you are unsure
#!/usr/bin/env php
<?php
/*
* Copyright (c) 2019 <cvar1984>
*
* Licensed unter the Apache License, Version 2.0 or the MIT license, at your
* option.
*
* ********************************************************************************
<?php
for ($i = 1; $i <= 5; ++$i) { // copy 5 process and daemonize
$pid = pcntl_fork();
if (!$pid) {
for($x=1; $x <=2; $x++) { // loop 2x
echo 'Task ' . $x . PHP_EOL;
sleep(1);
}
//echo 'In child proccess ' . $i . PHP_EOL;