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
| version: "3.8" | |
| # NOTE! This docker container has hard-coded values for passwords - this is intentional as this is testing machine. DO NOT EXPOSE TO THE INTERNET. | |
| services: | |
| database: | |
| image: mariadb:10.6.4-focal | |
| restart: unless-stopped | |
| ports: | |
| - 3306:3306 | |
| environment: | |
| MYSQL_ROOT_PASSWORD: 'CTBB_ROOT_PASSWD' |
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
| call plug#begin() | |
| Plug 'drewtempelmeyer/palenight.vim' | |
| Plug 'vim-airline/vim-airline' | |
| Plug 'wlangstroth/vim-racket' | |
| Plug 'sheerun/vim-polyglot' | |
| Plug 'rust-lang/rust.vim' | |
| Plug 'preservim/tagbar' | |
| Plug 'universal-ctags/ctags' | |
| Plug 'luochen1990/rainbow' | |
| Plug 'vim-syntastic/syntastic' |
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
| """Reads a har file from the filesystem, converts to CSV, then dumps to | |
| stdout. | |
| """ | |
| import argparse | |
| import json | |
| from urllib.parse import urlparse | |
| def main(harfile_path): | |
| """Reads a har file from the filesystem, converts to CSV, then dumps to |
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
| <# | |
| .SYNOPSIS | |
| Lists delegated permission grants (OAuth2PermissionGrants) and application permissions grants (AppRoleAssignments) granted to an app. | |
| .PARAMETER ObjectId | |
| The ObjectId of the ServicePrincipal object for the app in question. | |
| .PARAMETER AppId | |
| The AppId of the ServicePrincipal object for the app in question. |
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
| &()o1: select * from users where id=1 or (\)=1 union select 1,@@VERSION -- 1 | |
| &(.)o: select * from users where id=1 or (\.)=1 union select 1,@@VERSION -- 1 | |
| &(1&1: select * from users where id=1 or (\+)=1 or 1=1 -- 1 | |
| &(1)o: select * from users where id=1 or (1)=1 union select 1,banner from v$version where rownum=1 -- 1 | |
| &(1UE: select * from users where id=1 or (\+)=1 union select 1,@@VERSION -- 1 | |
| &(n&1: select * from users where id=1 or ($+)=1 or 1=1 -- 1 | |
| &(nUE: select * from users where id=1 or ($+)=1 union select 1,@@VERSION -- 1 | |
| &.o&1: select * from users where id=1 or \.<\ or 1=1 -- 1 | |
| &.o1&: select * from users where id=1 or \.<1 or 1=1 -- 1 | |
| &.o1U: select * from users where id=1 or \.<1 union select 1,@@VERSION -- 1 |
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 | |
| # | |
| # crt.sh sub-domain check by 1N3@CrowdShield | |
| # https://crowdshield.com | |
| # | |
| OKBLUE='\033[94m' | |
| OKRED='\033[91m' | |
| OKGREEN='\033[92m' | |
| OKORANGE='\033[93m' |
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
| """Reads a har file from the filesystem, converts to CSV, then dumps to | |
| stdout. | |
| """ | |
| import argparse | |
| import json | |
| from urlparse import urlparse | |
| def main(harfile_path): | |
| """Reads a har file from the filesystem, converts to CSV, then dumps to |