Skip to content

Instantly share code, notes, and snippets.

View n0obit4's full-sized avatar
:shipit:
<svg onmouseover=alert("Focusing")>

N0ob\x20Code n0obit4

:shipit:
<svg onmouseover=alert("Focusing")>
View GitHub Profile
@n0obit4
n0obit4 / Windows Active Directory GUID's List
Created March 20, 2024 20:03
Windows Active Directory GUIDs to human-readable names.
{
"8213eac9-9d55-44dc-925c-e9a52b927644": "ms-DS-Az-Role",
"9a0dc32f-c100-11d1-bbc5-0080c76670c0": "MSMQ-Foreign",
"6ab126c6-fa41-4b36-809e-7ca91610d48f": "ms-DFS-Target-List-v2",
"1677581f-47f3-11d1-a9c3-0000f80367c1": "Knowledge-Information",
"c8fca9b1-7d88-bb4f-827a-448927710762": "ms-DS-Claims-Transformation-Policies",
"fec364e0-0a98-11d1-adbb-00c04fd8d5cd": "Do-Garbage-Collection",
"7726b9d5-a4b4-4288-a6b2-dce952e80a7f": "Run-Protect-Admin-Groups-Task",
"fad5dcc1-2130-4c87-a118-75322cd67050": "MS-TS-ManagingLS3",
"b6873917-3b90-11d2-90cc-00c04fd91ab1": "ACS-Non-Reserved-Min-Policed-Size",
@n0obit4
n0obit4 / DH_exchange.py
Last active January 31, 2023 23:31
DH Exchange script is a script to emulate a manual Diffie Hellman exchange
# -*- coding: utf-8 -*-
# Made by: N0obit4
from random import choice,randint
from string import digits
from base64 import b64encode, encode
from hashlib import md5
from Crypto.Cipher import AES
@n0obit4
n0obit4 / CVE-2022-40684.py
Created October 26, 2022 03:02
Check if you are vulnerable to "authentication bypass" vulnerability discovered on FortiOS.
#!/usr/bin/env python3
# Made by: N0obit4
# https://github.com/n0obit4
# CVE-2022-40684
from requests import get, packages
from sys import argv
from urllib3.exceptions import InsecureRequestWarning
# Suppress only the single warning from urllib3 needed.
@n0obit4
n0obit4 / passran.py
Last active August 23, 2021 21:08
wifran - Ubee model DDW3611 cable modem automated password change | by: N0obit4
import random
class PasswordRandom:
def __init__(self):
self.abc = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!@#$%^&*()-_+='
self.iter = 0
def __iter__(self):
return self
@n0obit4
n0obit4 / PdfMaker.c
Last active August 23, 2021 20:32
Fake PDF Maker | By: N0obit4
#include <stdio.h>
#include <stdlib.h>
//By: N0obit4
main(int argc,char *argv[]){
if (argc == 2){
//Variables
FILE * fp;