.*\.(css|js|svg|css|svg|png|jpeg|jpg|gif|pdf|svg|md|ico|js|htm|html|txt|md|woff2|woff|webp|ttf|xml|doc|docx|bmp|mp3|mp4|json)
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/bash | |
| # | |
| ######################################################################### | |
| #This software code is made available "AS IS" without warranties of any # | |
| #kind. You may copy, display, modify and redistribute the software # | |
| #code either by itself or as incorporated into your code; provided that # | |
| #you do not remove any proprietary notices. Your use of this software # | |
| #code is at your own risk and you waive any claim against Amazon # | |
| #Digital Services, Inc. or its affiliates with respect to your use of # | |
| #this software code. (c) 2006-2007 Amazon Digital Services, Inc. or its # |
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
| SELECT version(); | |
| SHOW VARIABLES LIKE 'version'; | |
| SELECT @@version; | |
| SELECT version(); | |
| SELECT @@version; | |
| SELECT * FROM v$version; | |
| SELECT * FROM $version; | |
| SELECT SERVERPROPERTY('productversion'), SERVERPROPERTY('productlevel'), SERVERPROPERTY('edition'); | |
| SELECT sqlite_version(); |
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
| 86a464881678c47bc3402b758fbdf404e47bd13a5de82554f2e60086670f391d |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>URL Opener</title> | |
| </head> | |
| <body> | |
| <h1>URL Opener</h1> | |
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/bash | |
| if [ "$#" -ne 1 ]; then | |
| echo "Usage: $0 <domain>" | |
| exit 1 | |
| fi | |
| domain="$1" | |
| url_encode() { | |
| echo -n "$1" | xxd -plain | tr -d '\n' | sed 's/\(..\)/%\1/g' | |
| } | |
| while IFS= read -r line; do |
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
| # | |
| # Sets chmod permissions for the PEM file to be used with Windows' OpenSSH | |
| # without annoying "WARNING: UNPROTECTED PRIVATE KEY FILE!" message. | |
| # | |
| function Set-SSHPermissions { | |
| param( | |
| [string] | |
| $FilePath |
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
| 66e6584084f60ebe96f809e624374ca5d8a7d20b |
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
| { | |
| "project_options":{ | |
| "misc":{ | |
| "collaborator_server":{ | |
| "type":"none" | |
| } | |
| } | |
| }, | |
| "proxy":{ | |
| "http_history_display_filter":{ |
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
| # 8d16362098c47e4628413f20f6e5dd8840bd804950cd6714bb56e6b4e87c40d0 | |
| # fmtstr_payload() is not used here, it's more fun this way ;) | |
| from pwn import * | |
| import sys | |
| # 64bit | |
| def get_process(is_remote = False): | |
| if is_remote: | |
| return remote(*REMOTE_PATH) |