Skip to content

Instantly share code, notes, and snippets.

View VKECE's full-sized avatar
:octocat:
Okuyom ben yaaa

Veysel VKECE

:octocat:
Okuyom ben yaaa
View GitHub Profile
@ChrisMcKee
ChrisMcKee / Base65Encoding.cs
Created January 4, 2013 13:45
Base65 Encoding
namespace Utils
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
public class Base65Encoding
{
private const string Characters = "0123456789AaBbCcDdEeFfGgHhIiJjKklLMmNnOoPpQqRrSsTtUuVvWwXxYyZz._-";
@ozdemirburak
ozdemirburak / cities_of_turkey.json
Last active April 24, 2024 16:02
List of cities in Turkey presented in JSON format with the information of name, latitude, longitude, population and region.
[
{
"id": 1,
"name": "Adana",
"latitude": "37.0000",
"longitude": "35.3213",
"population": 2183167,
"region": "Akdeniz"
},
{

How to pass the OSCP

  1. Recon
  2. Find vuln
  3. Exploit
  4. Document it

Recon

Unicornscans in cli, nmap in msfconsole to help store loot in database.

@phith0n
phith0n / fpm.py
Last active July 8, 2024 06:11
Fastcgi PHP-FPM Client && Code Execution
import socket
import random
import argparse
import sys
from io import BytesIO
# Referrer: https://github.com/wuyunfeng/Python-FastCGI-Client
PY2 = True if sys.version_info.major == 2 else False
@MMohan1
MMohan1 / nested_zip.py
Last active June 1, 2023 19:45
recursively Extract zip files
import os
import zipfile
import re
def extract_nested_zip(zippedFile, toFolder):
""" Extract a zip file including any nested zip files
Delete the zip file(s) after extraction
"""
if not os.path.exists(zippedFile):
return