This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <Windows.h> | |
#include "stdio.h" | |
int main(int argc, char* argv[]) | |
{ | |
if (argc < 3) | |
{ | |
printf("Invalid Arguments <EXECUTABLE> <MODULE NAME> <FUNCTION NAME / ORDINAL NUMBER> <(OPTIONAL) IS ORDINAL>"); | |
return false; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pefile | |
import os | |
import json | |
def Error_Info(OrdinalOffset: int, Ordinalname : str): | |
if Ordinalname is None: | |
return f"Ordinal_{OrdinalOffset}" | |
else: | |
return Ordinalname.decode() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <Windows.h> | |
#include <SubAuth.h> | |
using _FilterPassword = BOOLEAN(*)(PUNICODE_STRING AccountName, PUNICODE_STRING FullName, PUNICODE_STRING Password, BOOLEAN IsSet); | |
PUNICODE_STRING ConvertToPuni(char* Character) | |
{ | |
int Len = MultiByteToWideChar(CP_UTF8, 0, Character, -1, NULL, 0); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/pyithon | |
import zipfile | |
import os | |
original_file = "5900.zip" | |
while True: | |
original_file = zipfile.ZipFile(original_file, 'r') #sets variable as an interactive object | |
password = original_file.namelist() #list content in zip file | |
pw = (password[0].removesuffix('.zip')) #removes array and removes .zip from zip content |