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
#!/usr/bin/env python3 | |
import sys | |
import math | |
import argparse | |
parser = argparse.ArgumentParser( | |
description="Paginate the output of a file or command via STDIN\nExample: cat log.txt | paginate.py -p 2 -l 20\nAuthor:@butlerallenj" | |
) | |
parser.add_argument('-l', '--limit', type=int, default=50, help="The per page quantity to print out. Default: 50") |
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
.asax | |
.ascx | |
.ashx | |
.asmx | |
.aspx | |
.axd | |
.browser | |
.cd | |
.compile | |
.config |
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
/* | |
* Description: Use this script to cancel resets issued to the specified machine | |
* on Hack The Box. Must be run in the browser console, just change | |
* the variable "machine" to the Machine name you would like to | |
* stop resets to. Copy/Paste into your browser on the Shoutbox | |
* page, and hack all the things! | |
*/ | |
// Set your machine name here | |
var machine = 'Valentine'; |