Skip to content

Instantly share code, notes, and snippets.

View vay3t's full-sized avatar
🏴‍☠️
The quieter you become the more you are able to hear...

Vay3t vay3t

🏴‍☠️
The quieter you become the more you are able to hear...
View GitHub Profile
@vay3t
vay3t / dns2ip.py
Last active September 13, 2018 13:00
import socket
import sys
try:
with open(sys.argv[1],"r") as f:
lista = f.readlines()
cont = 1
for line in lista:
#print "[!] transformando " + str(cont) + "/" + str(len(xlines))
line = line.rstrip()
// LAYOUT_LATIN
KEY_NON_US_100 = 100
ASCII_20 = KEY_SPACE
// 32
ASCII_21 = KEY_1, MODIFIERKEY_SHIFT
// 33 !
ASCII_22 = KEY_2, MODIFIERKEY_SHIFT
// 34 "
@vay3t
vay3t / LICENCE SUBLIME TEXT
Created June 13, 2018 18:42
Sublime Text 3 Serial key build is 3176
## Sublime Text 3 Serial key build is 3176
> * Added these lines into /etc/hosts
127.0.0.1 www.sublimetext.com
127.0.0.1 license.sublimehq.com
> * Used the license key
----- BEGIN LICENSE -----
@vay3t
vay3t / stack.md
Last active February 7, 2018 21:34
      +  +-------------------------+
      |  | +---------------------+ |
      |  | | Stack Frame Previo  | |
      |  | +---------------------+ |
      |  | +---------------------+ |
      |  | |     Argumentos      | |
      |  | +---------------------+ |
      |  | +---------------------+ |
      |  | | Direccion de Retorno| |
#include <string.h>
#include <stdio.h>
void func(char *arg){
char nombre[32];
strcpy(nombre, arg);
printf("Bienvenido a Linux Exploiting %s \n",nombre);
}
int main(int argc, char *argv[]){
@vay3t
vay3t / _readme.md
Created January 4, 2018 00:44 — forked from ajfisher/_readme.md
Auto WiFi detection and hotspot creation in boot for RPI

Auto WiFi detection or wifi hostpot creation during boot for RPI

Note: These are rough notes and there may be some variance as versions of raspbian get updated but should be pretty reliable as a guide.

This gist provides some instructions and config in order to have your Raspberry PI automatically connect to a roamed network, however if it fails to discover an available network it will set itself up as a wireless access point for you to connect to.

@vay3t
vay3t / breachcompilation.txt
Created December 19, 2017 14:59
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:
#!/bin/bash
#
# The BSD License (http://www.opensource.org/licenses/bsd-license.php)
# specifies the terms and conditions of use for checksec.sh:
#
# Copyright (c) 2009-2011, Tobias Klein.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
@vay3t
vay3t / Key_starUML.md
Created October 15, 2017 18:18 — forked from danielquisbert/Key_starUML.md
Key para starUML

Key starUML

ver: http://jorgeancal.com/tag/key-staruml/

En la carpeta de instalación:

Mac OS: /Applications/StarUML.app/Contents/www/license/node/
Linux: /opt/staruml/www/license/node/

Microsoft: C:\Program Files (x86)\StarUML\www\license\node

# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
case $- in
*i*) ;;
*) return;;
esac