Skip to content

Instantly share code, notes, and snippets.

View hash3liZer's full-sized avatar
💛
Breaking & Building Stuff

Shameer Kashif (Shiri) hash3liZer

💛
Breaking & Building Stuff
View GitHub Profile
@hash3liZer
hash3liZer / race.py
Created January 21, 2024 16:02
Script for exploiting Race Conditions
#!/usr/bin/python3
'''
A Script for Race Conditions
'''
import requests
import threading
import time
import json
@hash3liZer
hash3liZer / version.txt
Last active February 17, 2023 12:33
212-windows versioning
1.2
@hash3liZer
hash3liZer / OpenFileBox.cpp
Last active August 12, 2022 19:00
Open a File Dialog Box
// Specific Extensions
// https://cpp.hotexamples.com/examples/-/IFileDialog/SetFileTypeIndex/cpp-ifiledialog-setfiletypeindex-method-examples.html
PWSTR OpenFileBox(HWND hWnd) {
HRESULT hr = CoInitializeEx(NULL, COINIT_APARTMENTTHREADED |
COINIT_DISABLE_OLE1DDE);
if (!SUCCEEDED(hr)) {
return NULL;
}
@hash3liZer
hash3liZer / xmrig
Last active May 23, 2022 19:32
MM Dets
sudo mm -o xmrpool.eu:9999 -u 85P6w2zNTfk5oNPXbG3HKJAtUy9HtvboCLViLtR9eiFiVnGCcBs5Cy31raA48nqkqs3eDBRD6xbgeVp5p6oMgYBW6F5x6Pf -k --tls --rig-id "none" --randomx-1gb-pages
https://github.com/xmrig/xmrig/releases/download/v6.17.0/xmrig-6.17.0-gcc-win64.zip
https://github.com/xmrig/xmrig/releases/download/v6.17.0/xmrig-6.17.0-linux-x64.tar.gz
https://8u0blwl3a6.execute-api.ap-south-1.amazonaws.com/api/lsl_aws_secure
@hash3liZer
hash3liZer / install mitmproxy certificate from command line.md
Last active June 22, 2023 06:50
Installing Mitmproxy certificate into Windows from command line

Installation

Tried these commands and none of them worked?

$ certutil.exe -addstore root .\mitmproxy-ca-cert.p12
root "Trusted Root Certification Authorities"
CertUtil: -addstore command FAILED: 0x80092009 (-2146885623 CRYPT_E_NO_MATCH)
CertUtil: Cannot find the requested object.
@hash3liZer
hash3liZer / Activate Office 2019 for macOS VoL.md
Created April 17, 2021 22:00 — forked from zthxxx/Activate Office 2019 for macOS VoL.md
crack activate office on mac with license file

Activate MS Office 2019/2016 for macOS - Microsoft_Office_2019_VL_Serializer

Office 2019 above

2019-06-03

Note that Office2019 DO NOT support activate via simple copy/paste plist license file which is the simplest way to activate Office 2016. Fortunately, you can also use the VL Serializer tool, just install Office 2019 and Serializer, then run Serializer to activate.

Ref

@hash3liZer
hash3liZer / smtpcheck.py
Created August 10, 2020 17:50 — forked from blinks/smtpcheck.py
Check if an email address exists without sending an email. Technique from: http://www.webdigi.co.uk/blog/2009/how-to-check-if-an-email-address-exists-without-sending-an-email/
#!/usr/bin/env python
"""
Check that a particular email address exists.
Adam Blinkinsop <blinks@acm.org>
WARNING:
Checking email addresses in this way is not recommended, and will lead to
your site being listed in RBLs as a source of abusive traffic. Mail server
admins do like it when they get connections that don't result in email being
sent, because spammers often use this technique to verify email addresses.
@hash3liZer
hash3liZer / filer.py
Created July 29, 2020 20:27
Python 3 Bytes Vs Strings
# String Encoding to Bytes
aa = "a value here"
aa = aa.encode('utf-8')
# Bytes Conversion to String
bb = b"these are bytes"
bb = bb.decode('utf-8')
print(type(aa))
print(type(bb))
@hash3liZer
hash3liZer / exifxss.py
Created June 5, 2020 11:02
Embedding XSS payloads in the Exif Metadata fields of and image
import sys
import subprocess
exifs = [
"ImageDescription",
"Make",
"Model",
"Software",
"Artist",
"Copyright",