Skip to content

Instantly share code, notes, and snippets.

View ExByt3s's full-sized avatar
🎯
Focusing

ExByt3s

🎯
Focusing
  • nothing
  • caracas/venezuela
View GitHub Profile
@ExByt3s
ExByt3s / connect.c
Created August 30, 2018 05:10 — forked from skreuzer/connect.c
Make socket connection using SOCKS4/5 and HTTP tunnel
/***********************************************************************
* connect.c -- Make socket connection using SOCKS4/5 and HTTP tunnel.
*
* Copyright (c) 2000-2004 Shun-ichi Goto
* Copyright (c) 2002, J. Grant (English Corrections)
*
* 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.
@ExByt3s
ExByt3s / breachcompilation.txt
Created August 24, 2018 19:14
1.4 billion password breach compilation wordlist
wordlist created from original 41G stash via:
grep -rohP '(?<=:).*$' | uniq > breachcompilation.txt
Then, compressed with:
7z a breachcompilation.txt.7z breachcompilation.txt
Size:
@ExByt3s
ExByt3s / starulm.md
Created July 27, 2018 08:28 — forked from DrYazid/starulm.md
StarUml 3.0 full version

StarUML 3.0

  • 1- install staruml. : staruml
  • 2- install node.js : node.js
  • 3- go to ...\AppData\Local\Programs\StarUML\resources
  • 4- open CMD As admin
  • 5- execute
@ExByt3s
ExByt3s / starUML.md
Created July 27, 2018 07:22 — forked from trandaison/starUML.md
Get full version of StarUML

StarUML

Download: StarUML.io

Crack

Source: jorgeancal

After installing StartUML successfully, modify LicenseManagerDomain.js as follow:

/**
@ExByt3s
ExByt3s / web-servers.md
Created July 15, 2018 23:02 — forked from willurd/web-servers.md
Big list of http static server one-liners

Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.

Discussion on reddit.

Python 2.x

$ python -m SimpleHTTPServer 8000
@ExByt3s
ExByt3s / google-dorks
Created April 23, 2018 03:49 — forked from stevenswafford/google-dorks
Listing of a number of useful Google dorks.
" _ _ "
" _ /|| . . ||\ _ "
" ( } \||D ' ' ' C||/ { % "
" | /\__,=_[_] ' . . ' [_]_=,__/\ |"
" |_\_ |----| |----| _/_|"
" | |/ | | | | \| |"
" | /_ | | | | _\ |"
It is all fun and games until someone gets hacked!
root@Selene:~# nmap -p "*" 53.142.132.1/24
Starting Nmap 7.01 ( https://nmap.org ) at 2016-11-25 19:48 CET
Nmap scan report for 53.142.132.11
Host is up (0.040s latency).
Not shown: 4251 closed ports
PORT STATE SERVICE
23/tcp open telnet
80/tcp filtered http
MAC Address: 00:27:22:9E:64:0A (Ubiquiti Networks)
@ExByt3s
ExByt3s / aatree.c
Created September 30, 2016 23:12 — forked from siritori/aatree.c
AA tree by C
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include <stdbool.h>
#include "aatree.h"
static aanode* new_aanode(const int key, void *val, aanode *nullnode) {
aanode *n = (aanode*)malloc(sizeof(aanode));
if(n == NULL) return NULL;
n->key = key;
@ExByt3s
ExByt3s / murmurhash2.rb
Created September 2, 2016 16:00 — forked from gentooboontoo/murmurhash2.rb
Ruby version of Murmurhash 2 digest
# Found at http://toblog.bryans.org/2010/12/14/pure-ruby-version-of-murmurhash-2-0
# Ruby 1.8/1.9 compatible
module Digest
def self.murmur_hash2( string, seed )
# seed _must_ be an integer, but I do try to enforce that.
# m and r are mixing constants generated offline.
# They are not really magic, they just happen to work well.
raise "seed isn't an integer, and I can't convert it either." unless
seed.is_a?( Integer ) or seed.respond_to?( 'to_i' )