Skip to content

Instantly share code, notes, and snippets.

View sh1nu11bi's full-sized avatar

sh1nu11bi

View GitHub Profile
bash,pentesting one-liners and stuff
Basics
grep case insensitive
grep -i "<this>" <file>
grep recursively
grep -ir "<this>" <directory>
grep with word match only (string starting/ending with non-word constituent character)
grep -wi "<this>" <file>
remove/delete filename from grep output
grep -hi "<this>" <file>
#!/usr/bin/python
"""file2vbscript V0.3
tool to create a VBScript containing an embedded (executable) file
Source code put in public domain by Didier Stevens, no Copyright
https://DidierStevens.com
Use at your own risk
@sh1nu11bi
sh1nu11bi / gistodo.md
Created June 19, 2019 00:00
vbetoex.py
@sh1nu11bi
sh1nu11bi / gistodo.md
Created June 19, 2019 00:00
vbetoex.py
https://www.virustotal.com/gui/file/7c4198e5ae3122cb25f046711b50625010ed57f4da39614dff10b4ce2f2eacf0/detection
https://www.virustotal.com/gui/file/8269699797939cc3e75e6015b3615e0e39d6b48779cffc1a860c5e7e9f5e7353/detection
https://www.virustotal.com/gui/url/35b6f90cf71abc5269dbe603cf0ed055e63b2ae406450d87f66f64bfdc334286/detection
https://www.virustotal.com/gui/url/9ecd7452143581aa06e65ce28d80181f5c09514283744a0fb84127d26341c75d/detection
https://www.virustotal.com/gui/file/3e17322bb893939060bfb84621fdd2bfaa275d1d4f89118b2e14bd7b58ac7c28/detection
https://www.virustotal.com/gui/file/2641c900c29070dd1566783751a2e9b49e688cebd269e8e7a5f867b305ef240b/detection
https://www.virustotal.com/gui/file/569cff2b9070d7e363b1517678ae86086fe3d300a508a3c0aac6c6db26e6676b/detection
https://www.virustotal.com/gui/url/7d85c0110a2ec11bce6306df598709f0982024190970c3241fe2fb5920b120e1/detection
https://www.virustotal.com/gui/url/6fede53e5525f42ba4e549a095661659926959316684106f15896280b9a0e64f/detection
@sh1nu11bi
sh1nu11bi / rutracker-magnet.user.js
Created November 28, 2018 09:43 — forked from lemenkov/rutracker-magnet.user.js
Rutracker Magnet + trackers addon for GreaseMonkey
// ==UserScript==
// @name Rutracker.org Magnet URLs
// @namespace rutrackerorg-magnet-urls
// @description Transforms torrent hash into a magnet url
// @include https://rutracker.org/*
// @include https://rutracker.cr/*
// @include https://rutracker.net/*
// @include https://rutracker.nl/*
// @include http://rutrackerripnext.onion/*
// @version 9
@sh1nu11bi
sh1nu11bi / main.c
Created February 7, 2018 18:56
TeamViewer # 3
1
2
3
4
5
6
7
8
9
10
package main
import (
"database/sql"
"gopkg.in/gorp.v1"
"log"
"strconv"
"github.com/gin-gonic/gin"
_ "github.com/go-sql-driver/mysql"