Skip to content

Instantly share code, notes, and snippets.

View ReddyyZ's full-sized avatar
💻
127.0.0.1

Arthur Oliveira ReddyyZ

💻
127.0.0.1
View GitHub Profile
@ReddyyZ
ReddyyZ / TorPrivoxyPython.md
Created April 18, 2020 22:15 — forked from DusanMadar/TorPrivoxyPython.md
A step-by-step guide how to use Python with Tor and Privoxy

A step-by-step guide how to use Python with Tor and Privoxy

Tested on Ubuntu 18.04 Docker container. The Dockerfile is a single line FROM ubuntu:18.04. Alternatively, you can simply run docker run -it ubuntu:18.04 bash.

NOTE: stopping services didn't work for me for some reason. That's why there is kill $(pidof <service name>) after each failed service <service name> stop to kill it.

References

This guide is basically a compilation of all the resources listed below.

/*
Compile using the following command:
$gcc aes_128_crypter.c -o aes_128_crypter -lmcrypt -fno-stack-protector -z execstack
Author: Nipun Jaswal (SLAE-1080)
*/
#include <stdio.h>
#include <string.h>
#include <mcrypt.h>