Skip to content

Instantly share code, notes, and snippets.

@NrI3
NrI3 / download.bat
Last active May 15, 2020 07:29
Download music or/and video youtube
@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
@NrI3
NrI3 / vdown.py
Last active June 14, 2019 18:43
Download Video Youtube
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'", ''))
@NrI3
NrI3 / install-kde-plasma-debian-9
Last active May 12, 2019 01:20
Install KDE Plasma - debian 9
# 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
@NrI3
NrI3 / linux-network-config
Last active May 12, 2019 01:53
Set Network Linux
# 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
@NrI3
NrI3 / IdaRop
Created April 23, 2019 19:28
Install IDA 7.0 ROP
[github]
https://github.com/lucasg/idarop
[cmd] as admin
C:\Python27-x86\python.exe setup.py install --ida --ida-version="7.0"
@NrI3
NrI3 / mdark.ini
Last active May 23, 2021 09:26
MDark theme by BleICer (https://imgur.com/bMsLmSO)
[Colors]
AbstractTableViewBackgroundColor=#272822
AbstractTableViewHeaderTextColor=#000000
AbstractTableViewSelectionColor=#363930
AbstractTableViewSeparatorColor=#555A4C
AbstractTableViewTextColor=#FFFFFF
BreakpointSummaryKeywordColor=#8B671F
BreakpointSummaryParenColor=#FF0000
BreakpointSummaryStringColor=#008000
DisassemblyAddressBackgroundColor=#XXXXXX
@NrI3
NrI3 / injector.py
Created February 15, 2019 21:05
Python Dll Injector
####################################
## Python DLL Injector By BleICer ##
####################################
# Imports
from ctypes import *
try:
# Setting Modules
@NrI3
NrI3 / Run-Lnk-As-Commad
Created January 31, 2019 03:06
Run .lnk with cmd or command promp
# 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
@NrI3
NrI3 / install-grub-usb
Last active December 2, 2018 16:25
Install grub on USB or HardDisk
:: 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
@NrI3
NrI3 / ROPGadgets
Last active November 22, 2018 08:02
install ROPGadgets linux
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