forked from r4sas/PBinCLI
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
2.9 KiB
59 lines
2.9 KiB
7 years ago
|
#!/usr/bin/env python2.7
|
||
8 years ago
|
import os, sys, argparse
|
||
8 years ago
|
import pbincli.actions
|
||
|
from pbincli.utils import PBinCLIException
|
||
|
|
||
8 years ago
|
|
||
8 years ago
|
def main():
|
||
|
parser = argparse.ArgumentParser()
|
||
|
subparsers = parser.add_subparsers(title="actions", help="List of commands")
|
||
8 years ago
|
|
||
8 years ago
|
# a send command
|
||
8 years ago
|
send_parser = subparsers.add_parser("send", description="Send data to PrivateBin instance", usage="""
|
||
|
%(prog)s --burn --discus --expire 1day --format plaintext \\
|
||
8 years ago
|
--comment "My file" --password mypass image.txt"""
|
||
8 years ago
|
)
|
||
8 years ago
|
send_parser.add_argument("-B", "--burn", default=False, action="store_true", help="burn sent paste after reading")
|
||
|
send_parser.add_argument("-D", "--discus", default=False, action="store_true", help="open discussion of sent paste")
|
||
8 years ago
|
send_parser.add_argument("-E", "--expire", default="1day", action="store",
|
||
|
choices=["5min", "10min", "1hour", "1day", "1week", "1month", "1year", "never"], help="expiration of paste (default: 1day)")
|
||
|
send_parser.add_argument("-F", "--format", default="plaintext", action="store",
|
||
|
choices=["plaintext", "syntaxhighlighting", "markdown"], help="format of comment (default: plaintext)")
|
||
|
send_parser.add_argument("-c", "--comment", help="comment in quotes")
|
||
8 years ago
|
send_parser.add_argument("-p", "--password", help="password for encrypting paste")
|
||
8 years ago
|
send_parser.add_argument("-d", "--debug", default=False, action="store_true", help="enable debug")
|
||
7 years ago
|
send_parser.add_argument("--dry", default=False, action="store_true", help="invoke dry run")
|
||
8 years ago
|
send_parser.add_argument("-f", "--file", help="example: image.jpg or full path to file")
|
||
8 years ago
|
send_parser.set_defaults(func=pbincli.actions.send)
|
||
8 years ago
|
|
||
8 years ago
|
get_parser = subparsers.add_parser("get", description="Get data from PrivateBin instance", usage="""
|
||
|
%(prog)s pasteid#password"""
|
||
|
)
|
||
|
get_parser.add_argument("pasteinfo", help="example: aabb#cccddd")
|
||
8 years ago
|
get_parser.add_argument("-d", "--debug", default=False, action="store_true", help="enable debug")
|
||
8 years ago
|
get_parser.add_argument("-p", "--password", help="password for decrypting paste")
|
||
8 years ago
|
get_parser.set_defaults(func=pbincli.actions.get)
|
||
|
|
||
8 years ago
|
delete_parser = subparsers.add_parser("delete", description="Delete paste from PrivateBin instance using token", usage="""
|
||
|
%(prog)s --paste aabb --token aabbcc"""
|
||
|
)
|
||
|
delete_parser.add_argument("-p", "--paste", required=True, help="paste id")
|
||
|
delete_parser.add_argument("-t", "--token", required=True, help="delete token")
|
||
|
delete_parser.add_argument("-d", "--debug", default=False, action="store_true", help="enable debug")
|
||
|
delete_parser.set_defaults(func=pbincli.actions.delete)
|
||
|
|
||
8 years ago
|
# parse arguments
|
||
|
args = parser.parse_args()
|
||
|
if hasattr(args, "func"):
|
||
|
try:
|
||
|
args.func(args)
|
||
|
except PBinCLIException as pe:
|
||
|
print("PBinCLI error: {}".format(pe))
|
||
|
sys.exit(1)
|
||
|
else:
|
||
|
parser.print_help()
|
||
|
|
||
8 years ago
|
|
||
8 years ago
|
if __name__ == "__main__":
|
||
|
main()
|