forked from PowerScript/KatanaFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
26 changed files
with
553 additions
and
740 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/usr/bin/env python2 | ||
#HEAD######################################################### | ||
# | ||
# Katana Framework | APIs Instance | ||
# Last Modified: 24/12/2016 | ||
# | ||
#########################################################HEAD# | ||
|
||
from core.Function import * | ||
printk = printk() | ||
NET = NET() | ||
UTIL = UTIL() | ||
GRAPHICAL = GRAPHICAL() | ||
COM = COM() | ||
SYSTEM = SYSTEM() | ||
WEB = WEB() |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
#!/usr/bin/env python | ||
#HEAD######################################################### | ||
# | ||
# Katana Framework | Configuration | ||
# Last Modified: 24/12/2016 | ||
# | ||
#########################################################HEAD# | ||
|
||
### SETTING FRAMEWORK ### | ||
|
||
# Verbose Mode | ||
"""Show all the alert messages.""" | ||
VERBOSE =True | ||
|
||
# Errors Log | ||
"""Saves all error events in a log.""" | ||
ERROR_LOG =False | ||
|
||
# Enable Auto-load Session | ||
"""Load last session in the module""" | ||
AUTO_LOAD_SESSION =True | ||
|
||
# Apache Folder | ||
"""Path of Apache2""" | ||
PATCH_WWW ="/var/www/html/" | ||
|
||
# Enable Xterm | ||
"""It shows processes that are running through wires, shown with xterm""" | ||
XTERM_OPTION =False | ||
|
||
# SESSIONS SAVE | ||
"""Not save Sessions""" | ||
SAVE_SESSIONS =False | ||
|
||
|
||
### END SETTING FRAMEWORK ### | ||
|
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.