Skip to content

Instantly share code, notes, and snippets.

View Gameye98's full-sized avatar
:octocat:
Code for Life

DedSecTL Gameye98

:octocat:
Code for Life
View GitHub Profile
@Gameye98
Gameye98 / ccgen.sh
Created July 18, 2020 07:31
credit card generator
# ccgen [Bash] - by Gameye98/DedSecTL
# credit card generator - use luhn or modulus 10 algorithm to generate a valid credit card number
# ---
# author: DedSecTL/Gameye98
# team: BlackHole Security
# license: WTFPL
# ---
result=()
cc_digit[0]=13
cc_digit[1]=14
@Gameye98
Gameye98 / bind_socket.py
Created July 5, 2020 03:13 — forked from tuxfight3r/bind_socket.py
python tcp socket client / server examples
#!/usr/bin/python
import socket #for sockets
import sys #for exit
try:
#create an AF_INET, STREAM socket (TCP)
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
except socket.error, msg:
print 'Failed to create socket. Error code: ' + str(msg[0]) + ' , Error message : ' + msg[1]

Vim Cheatsheet

Generally helpful stuff

Open a file for editing             :e path/to/file.txt
Return to Normal mode               ESC   or <CTRL>+C

Navigating around text

@Gameye98
Gameye98 / wgen.py
Created January 29, 2018 08:11
WGen adalah alat yg membantu anda menghasilkan sekumpulan kata acak dari beberapa informasi spesifik.
#!/usr/bin/python
# -*- coding: utf-8 -*-
# WGen - Wordlist Generator (4 Jan 2018 (14:32))
# Author: DedSecTL/DTL/Gameye98
# Team: BlackHole Security
# Github: https://github.com/Gameye98
# Blog: http://droidsec9798-com.mwapblog.com
import os
import sys
import time
@Gameye98
Gameye98 / quickfind.sh
Created December 13, 2017 07:46
Quick Find file on your Android Device
#!/system/bin/sh
# QuickFind v1.0
# Author: DedSecTL/DTL
# Date: 10-12-2017 (19:23)
# Blog: http://droidsec9798-com.mwapblog.com
# Github: https://github.com/Gameye98
# BlackHole Security Team
## Colors
white='\033[1;37m'
normal='\033[0m'
@Gameye98
Gameye98 / xd3v.sh
Created December 12, 2017 18:49
View your general device information
#!/system/bin/sh
# XD3v v1.0
# Date 11-12-2017 (17:16)
# Author: DedSecTL
# Github: https://github.com/Gameye98
# Blog: http://droidsec9798-com.mwapblog.com
# BlackHole Security (BlackHoleSec)
help() {
echo "XD3v v1.0-dev (c) 2017 by DedSecTL/DTL - No Army Can Stop an Idea";
echo "Usage: xd3v [options]";
@Gameye98
Gameye98 / fl00d2.py
Created December 9, 2017 23:23
UDP Flood DoS Attack
#!/system/bin/python
#Fl00d 2.0 27-06-2017 (1:42)
#Tool for UDP Flood
#Authorized by DedSecTL
#AndroSec1337 Cyber Team
import socket, os, random, time
# Color
B = '\033[1m'
R = '\033[31m'
@Gameye98
Gameye98 / binconv.py
Created December 9, 2017 20:30
Convert Ascii to Binary
#!/usr/bin/python
# -*- coding: utf-8 -*-
# BinConv (Encoder or Decoder)
# Author: DedSecTL
# Date: 06-12-2017 (13:04)
# Blog: http://droidsec9798-com.mwapblog.com
import sys, asciibinary
def banner():
print " ___ _ _____ "