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>
@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 September 22, 2024 07:20
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"