Skip to content

Instantly share code, notes, and snippets.

View jwne's full-sized avatar
💭
I may be slow to respond.

jwne

💭
I may be slow to respond.
  • RIU
View GitHub Profile
@jwne
jwne / RootHelper.x.c
Created September 6, 2020 15:36 — forked from NullArray/RootHelper.x.c
RootHelper Obfuscated, Encrypted, Converted to C source
//#____ ____ __
//#\ \ / /____ _____/ |_ ___________
//# \ Y // __ \_/ ___\ __\/ _ \_ __ \
//# \ /\ ___/\ \___| | ( <_> ) | \/
//# \___/ \___ >\___ >__| \____/|__|
//# \/ \/
//#--Licensed under GNU GPL 3
//#----Authored by Vector/NullArray
//###############################################
@jwne
jwne / README.md
Created May 3, 2020 02:47 — forked from dbiesecke/README.md
jmx-rmi
@jwne
jwne / ssh.c
Created November 11, 2016 20:57
#include <libssh/libssh.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <unistd.h>
int main(int argc, char **argv)
import org.bukkit.Bukkit;
import org.bukkit.ChatColor;
import org.bukkit.Location;
import org.bukkit.entity.Player;
import org.bukkit.event.entity.CreatureSpawnEvent;
import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
@jwne
jwne / submit.php
Created May 20, 2016 19:41 — forked from SilverCory/submit.php
So you can past log files to hastebin. Because it's moar sexy than the ones they provide.
// PUT THIS SECTION AT http://your-site.com/submit.php
<?php
function grab_dump($var)
{
ob_start();
var_dump($var);
return ob_get_clean();
@jwne
jwne / malwarelist.txt
Created May 3, 2016 16:06 — forked from zam89/malwarelist.txt
List of url from various honeypot
http://198.50.240.201/fix
http://31.170.163.10/gg.tgz
http://angelfire.com/komales88/bengos.tar
http://arhivez.netfast.org/1/perli2014.txt
http://babytuu.altervista.org/udp.pl
http://babytzuu.altervista.org/udp.pl
http://boaka.go.ro/butzi.tgz
http://bucuresti.orgfree.com/d3sp3rado.tgz
http://byzorro.tk/shot.tgz
http://cioculetz.altervista.org/l.tgz
@jwne
jwne / gist:54f71efc1ad05d6545e7
Created March 28, 2016 15:15
Sublime Text 3 Build 3083 License Key - CRACK
### yo probe esta:
—– BEGIN LICENSE —–
J2TeaM
2 User License
EA7E-940282
45CB0D8F 09100037 7D1056EB A1DDC1A2
39C102C5 DF8D0BF0 FC3B1A94 4F2892B4
0AEE61BA 65758D3B 2EED551F A3E3478C
C1C0E04E CA4E4541 1FC1A2C1 3F5FB6DB
@jwne
jwne / logger.php
Created March 15, 2016 15:13 — forked from pykotechguy/logger.php
sample ip address logging class
<?php
class Logger {
public $db;
public function __construct() {
$this->db = $this->_conn('localhost','root','root','stats');
}
private function _conn($dbhost, $user,$pwd, $db) {
try {
return mysqli_connect($dbhost,$user,$pwd,$db);
@jwne
jwne / connectionlog.php
Created March 15, 2016 15:13
Log connecting clients' IP, port, user agent, and HTTP referer with a timestamp of the connection. MySQL storage preferred.
<?php
// For now file storage requires that the file specified is created already and chmodded to allow writing.
/**
* Connection info logging script created by Xeru
*
* Website: https://xeru.me
* Twitter: https://twitter.com/Xeru_
* GitHub: https://github.com/exec
@jwne
jwne / PHP IP Logger
Created March 15, 2016 15:13 — forked from Mat-Xel/PHP IP Logger
(c) Mat-Xel
----- INDEX ----
<?php
$addr=getenv('REMOTE_ADDR');
$dt=date("d/m/Y - H:i:s");
$write=$dt.(" => ").$addr."\n";
$file=fopen("iplog/iplog.txt","a") or die("Error");
fwrite($file,$write);
?>