-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsack.py
33 lines (29 loc) · 804 Bytes
/
sack.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#**
#
########
# Sack #
########
#
# Identify connection of sessions for social engineering attacks
#
# @version 1.0
# @link https://github.com/jofpin/sack
# @author Jose Pino (Fraph), @jofpin | [email protected]
# @copyright 2016 Sack / Framework social engineering attacks
#
# This file is the boot in Sack.
# For full copyright information this visit: https://github.com/jofpin/sack
#
# Copyright 2016 by Jose Pino <[email protected]>
#**
from core.framework import sack
from core.generals import generals
# We generalize the main class of <sack>
app = sack()
# Request root home to run <sack> with all permissions
app.rootConnection()
if __name__ == "__main__":
# General expression this is expressed after the root
app.main()