brew install stats
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
https://fzl-aws.notion.site/Silver-Tickets-using-nxc-23fb231ab1b680ebb593fd8f8710c417?source=copy_link | |
https://fzl-aws.notion.site/RBCD-Using-NXC-1f3b231ab1b680ed985bc2ed8e32ee3f?source=copy_link | |
https://fzl-aws.notion.site/HTB-Pivot-Ligolo-ng-23fb231ab1b6803fb3a7d4f325258a74?source=copy_link |
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
https://fzl-aws.notion.site/HTB-Pivot-Ligolo-ng-23fb231ab1b6803fb3a7d4f325258a74 |
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 React, { useState, useEffect } from 'react'; | |
import { ChevronDown, ChevronUp, Plus, Trash2, Check, Clock, AlertCircle, User, Shield, Globe } from 'lucide-react'; | |
const IAMRoleApp = () => { | |
const [activeTab, setActiveTab] = useState('create'); | |
const [formData, setFormData] = useState({ | |
roleName: '', | |
description: '', | |
trustRelationship: { | |
type: 'service', |
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 requests | |
import string | |
import time | |
BASE_URL = "https://filteredout.ctf.yogosha.com/" | |
def make_request(user_param, pass_param="a"): | |
params = { | |
'user': user_param, |
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 requests | |
import string | |
import time | |
# Target URL | |
BASE_URL = "https://filteredout.ctf.yogosha.com/" | |
# Common database names to try first | |
COMMON_DB_NAMES = [ | |
'ctf', 'challenge', 'test', 'db', 'main', 'mysql', 'users', 'app', |
NewerOlder