Skip to content

Instantly share code, notes, and snippets.

View CybernetiX-S3C's full-sized avatar
:shipit:
I may be slow to respond.

John Modica CybernetiX-S3C

:shipit:
I may be slow to respond.
View GitHub Profile
@CybernetiX-S3C
CybernetiX-S3C / MultiArch.txt
Last active August 2, 2019 23:55 — forked from chattama/gist:3508370
ArchLinux makepkg & pacman on Ubuntu/Debian
## Installing pacman and makepkg on Ubuntu/Debian based OS. (Kali)
# I am building a multiarch pentesting OS.
sudo apt install libarchive-dev bsdtar
git clone git://projects.archlinux.org/pacman.git
cd pacman
./autogen.sh
./configure
@CybernetiX-S3C
CybernetiX-S3C / windows_7_lic_info.txt
Created March 18, 2019 07:37
Microsoft Windows 7 Ultimate, Pro, Enterprise Activation Keys [MAK,RETAIL]
Windows 7 Ultimate Retail Offline Activation Key
BR6G7-729GM-DQDQW-F9M4P-MM2JX
J6XG4-8JFTF-43CHH-8Q2VW-KHQH6
YQMCM-3W6TK-YXP66-GKCJV-PX7PH
[Tested working on 18 June 2013]
=================================================================================
Windows 7 Pro / Enterprise Online Activation MAK Key
echo -e "\e[1;40m" ; clear ; while :; do echo $LINES $COLUMNS $(( $RANDOM % $COLUMNS)) $(( $RANDOM % 72 )) ;sleep 0.05; done|awk '{ letters="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789@#$%^&*()"; c=$4; letter=substr(letters,c,1);a[$3]=0;for (x in a) {o=a[x];a[x]=a[x]+1; printf "\033[%s;%sH\033[2;32m%s",o,x,letter; printf "\033[%s;%sH\033[1;37m%s\033[0;0H",a[x],x,letter;if (a[x] >= $1) { a[x]=0; } }}'
from asciimatics.renderers import FigletText, Fire
from asciimatics.scene import Scene
from asciimatics.screen import Screen
from asciimatics.effects import Print
from asciimatics.exceptions import ResizeScreenError
from pyfiglet import Figlet
import sys
import time
@CybernetiX-S3C
CybernetiX-S3C / TorPrivoxyPython.md
Created February 5, 2021 15:56 — 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.

@CybernetiX-S3C
CybernetiX-S3C / README.md
Last active June 21, 2023 16:13
Markdown for laymen.

Markdown is a simple and lightweight formatting language used to style text on the web. It provides a way to add basic formatting elements to plain text, such as headers, bold and italic text, lists, links, and images. You can think of it as a set of simple instructions that tell a computer how to display your text in a more visually appealing way.

Using Markdown is quite straightforward. Instead of using complex HTML tags or other formatting syntax, you can write your text with special characters and symbols to indicate the desired formatting. For example, to create a heading, you can start a line with one or more hash symbols (#). The number of hash symbols determines the level of the heading, with one being the highest level and six the lowest.

Here's an example of a Markdown heading:

# This is a top-level heading