Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

appmon - colorized console in Windows (cmd.exe) #54

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions appmon.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,12 @@
# limitations under the License.
###

import os, sys, argparse, time, codecs, binascii, frida, json, traceback, subprocess
import os, sys, argparse, time, codecs, binascii, frida, json, traceback, subprocess, colorama
from flask import Flask, request, render_template
from termcolor import colored
import database as db

colorama.init()
print """
___ .______ .______ .___ ___. ______ .__ __.
/ \ | _ \ | _ \ | \/ | / __ \ | \ | |
Expand Down Expand Up @@ -357,4 +358,4 @@ def init_session():
except KeyboardInterrupt:
script.unload()
session.detach()
_exit_()
_exit_()
5 changes: 3 additions & 2 deletions intruder/appintruder.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,14 @@
# limitations under the License.
###

import os, sys, argparse, time, codecs, binascii, frida, json, traceback, signal
import os, sys, argparse, time, codecs, binascii, frida, json, traceback, signal, colorama
from termcolor import colored

device = ''
session = ''
merged_script_path = '/tmp/merged.js'

colorama.init()
print """
___ .______ .______ .___ ___. ______ .__ __.
/ \ | _ \ | _ \ | \/ | / __ \ | \ | |
Expand Down Expand Up @@ -266,4 +267,4 @@ def signal_handler(signal, frame):
_exit_()

signal.signal(signal.SIGINT, signal_handler)
signal.pause()
signal.pause()
5 changes: 3 additions & 2 deletions tracer/android_tracer.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,10 @@
# limitations under the License.
###

import os, sys, frida, re, argparse, codecs, json
import os, sys, frida, re, argparse, codecs, json, colorama
from termcolor import colored

colorama.init()
print """
___ .______ .______ .___ ___. ______ .__ __.
/ \ | _ \ | _ \ | \/ | / __ \ | \ | |
Expand Down Expand Up @@ -322,4 +323,4 @@ def generate_tracer_js(scriptName, txtScript):
sys.exit()
else:
print colored('Didn\'t find anything...quitting!', "red")
sys.exit()
sys.exit()