This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo off | |
| setlocal | |
| if "%1"=="videos" goto VIDEOS | |
| if "%1"=="musics" goto MUSICS | |
| if "%1"=="video" goto VIDEO | |
| if "%1"=="music" goto MUSIC | |
| if "%1"=="update" goto UPDATE | |
| if "%1"=="test" goto TEST |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import sys | |
| import os | |
| import subprocess | |
| from subprocess import Popen, PIPE, STDOUT | |
| def run(cmd): | |
| p = Popen(cmd , stdout=PIPE) | |
| for line in iter(p.stdout.readline, b''): | |
| print(str(line).replace("\\n'",' ').replace("b'", '')) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Open source list | |
| nano /etc/apt/sources.list | |
| # Append list | |
| deb http://ftp.de.debian.org/debian stretch main | |
| # Update list | |
| apt-get update | |
| # Install |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # automatic static ip | |
| # edit nano /etc/network/interfaces | |
| auto eth0 | |
| iface eth0 inet static | |
| address 192.168.126.100 | |
| netmask 255.255.255.0 | |
| network 192.168.126.0 | |
| broadcast 192.168.126.255 | |
| gateway 192.168.126.2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [github] | |
| https://github.com/lucasg/idarop | |
| [cmd] as admin | |
| C:\Python27-x86\python.exe setup.py install --ida --ida-version="7.0" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Colors] | |
| AbstractTableViewBackgroundColor=#272822 | |
| AbstractTableViewHeaderTextColor=#000000 | |
| AbstractTableViewSelectionColor=#363930 | |
| AbstractTableViewSeparatorColor=#555A4C | |
| AbstractTableViewTextColor=#FFFFFF | |
| BreakpointSummaryKeywordColor=#8B671F | |
| BreakpointSummaryParenColor=#FF0000 | |
| BreakpointSummaryStringColor=#008000 | |
| DisassemblyAddressBackgroundColor=#XXXXXX |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #################################### | |
| ## Python DLL Injector By BleICer ## | |
| #################################### | |
| # Imports | |
| from ctypes import * | |
| try: | |
| # Setting Modules |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Create ur directory where u content all lnk of programs | |
| C:\Tools\Lnks | |
| # Set this directory in Global vars for system ( Enviroment Vars ) | |
| Win + ( Pause | Break ) | |
| -> Advance System Configuration -> Enviroment Vars | |
| -> PATHEXT |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| :: List disk and system file mounted | |
| # lsblk | |
| NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT | |
| sdb 8:16 0 298,1G 0 disk | |
| ├─sdb1 8:17 0 30G 0 part | |
| └─sdb2 8:18 0 5G 0 part |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| apt-get install python-pip | |
| apt-get install capstone | |
| apt-get install gist | |
| gist clone https://github.com/JonathanSalwan/ROPgadget.git | |
| cd ROPgadget | |
| python setup install | |
| # Example |