Skip to content

Instantly share code, notes, and snippets.

View aghosh0605's full-sized avatar
🌏
Working from home

Aniruddha Ghosh aghosh0605

🌏
Working from home
View GitHub Profile
@theevilbit
theevilbit / divide_and_conquer.c
Created January 17, 2021 15:11
Divide and Conquer NextGen AV bypass
/*
This is a POC for a generic technique I called internally on our red team assessment "Divide and Conquer", which can be used to bypass behavioral based NextGen AV detection. It works by splitting malicious actions and API calls into distinct processes.
*/
#include <stdio.h>
#include <tchar.h>
#include <windows.h>
#include "Commctrl.h"
#include <string>
@Bobmajor
Bobmajor / gist:319e89e9c876cccdb1b77f1783e9a820
Created April 25, 2020 16:06
HOW TO INSTALL POSTMAN ON LINUX WITHOUT SNAP
1. Go to the Postman app download page at https://www.getpostman.com/apps. You can choose the os version from the drop-down. x64 for 64 bit Operating System and x84 for the 32 bit based Linux
2. Open the terminal and go to the directory where you have downloaded the tar file. If you have downloaded on the Downloads folder
cd ~/Downloads/
3. Run the following commands,
sudo rm -rf /opt/Postman/
@rosmianto
rosmianto / convert_byte_array.ino
Created February 23, 2020 06:56
How to Convert Byte Array to Hexstring Arduino Platform
void setup() {
byte example[] = {0x31, 0x32, 0x33, 0x34};
int length = 4;
String result = "";
String hexstring = "";
for(int i = 0; i < length; i++) {
if(example[i] < 0x10) {
hexstring += '0';
@sundowndev
sundowndev / GoogleDorking.md
Last active April 25, 2025 03:34
Google dork cheatsheet

Google dork cheatsheet

Search filters

Filter Description Example
allintext Searches for occurrences of all the keywords given. allintext:"keyword"
intext Searches for the occurrences of keywords all at once or one at a time. intext:"keyword"
inurl Searches for a URL matching one of the keywords. inurl:"keyword"
allinurl Searches for a URL matching all the keywords in the query. allinurl:"keyword"
intitle Searches for occurrences of keywords in title all or one. intitle:"keyword"