Skip to content

Instantly share code, notes, and snippets.

View GHackAnonymous's full-sized avatar

Eder Gomez de Segura GHackAnonymous

  • Mondragon Unibertsitatea (MU)
  • Araia (Alava)
View GitHub Profile
@GHackAnonymous
GHackAnonymous / Free O'Reilly Books.md
Created September 27, 2017 20:43 — forked from augbog/Free O'Reilly Books.md
Free O'Reilly Books

Free O'Reilly books and convenient script to just download them.

Thanks /u/FallenAege/ and /u/ShPavel/ from this Reddit post

How to use:

  1. Take the download.sh file and put it into a directory where you want the files to be saved.
  2. cd into the directory and make sure that it has executable permissions (chmod +x download.sh should do it)
  3. Run ./download.sh and wee there it goes. Also if you do not want all the files, just simply comment the ones you do not want.
import socket
import time
import ast
def main():
backlog = open("eternalblue.replay").read().split("\n\n")
backlog = [ast.literal_eval(i) for i in backlog]
connections = []
start = time.monotonic()
for i in backlog:
@GHackAnonymous
GHackAnonymous / hello.asm
Created March 1, 2017 11:14 — forked from Overv/hello.asm
Hello World in x86 assembly with Intel syntax
extern exit, printf
section .data
msg db "Hello World!", 10, 0
section .text
global main
main:
push msg
call printf
cd ~
sudo npm install -g sm
sudo apt-get install git-core libxml2-dev
git clone https://github.com/ajaxorg/cloud9.git cloud9
cd ./cloud9
sudo sm install
...