forked from VisualOps/pysa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpysa.py
executable file
·200 lines (168 loc) · 6.98 KB
/
pysa.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
#!/usr/bin/python
'''
Main file
pysa - reverse a complete computer setup
Copyright (C) 2013 MadeiraCloud Ltd.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
@author: Thibault BRONCHAIN
'''
from optparse import *
import logging
import re
from pysa.tools import Tools
from pysa.preprocessing import Preprocessing
from pysa.config import *
from pysa.exception import *
from pysa.madeira import *
from pysa.filter.parser import FParser
from pysa.scanner.scanner_handler import module_scan
from pysa.puppet.converter import PuppetConverter
from pysa.puppet.build import PuppetBuild
from pysa.salt.converter import SaltConverter
from pysa.salt.build import SaltBuild
# global defines
USAGE = 'usage: %prog [-hqps] [-m module_name] [-o output_path] [-c config_file_path] [-f filter_config_path] [-l {-u madeira_username}|{-i madeira_id}]'
VERSION_NBR = '0.3b'
VERSION = '%prog '+VERSION_NBR
# logger settings
LOG_FILENAME = '/tmp/scanner.log'
LOG_FORMAT = '%(asctime)s-%(name)s-%(levelname)s-%(message)s'
def __log(lvl):
level = logging.getLevelName(lvl)
formatter = logging.Formatter(LOG_FORMAT)
handler = logging.StreamHandler()
logger = logging.getLogger()
handler.setFormatter(formatter)
logger.setLevel(level)
logger.addHandler(handler)
# scanner class
class Scanner():
def __init__(self, filters=None):
self.resources = None
self.filters = filters
self.preprocessed = None
@GeneralException
# get resource from different modules
def scan(self):
logging.info('Scanner.scan(): start scanning')
self.resources = module_scan(self.filters if self.filters else None)
@GeneralException
# generate puppet files
def preprocessing(self, module):
if not self.resources:
logging.error('Scanner.preprocessing(): No resources')
return
logging.info('Scanner.preprocessing(): Running')
return Preprocessing(module).run(self.resources)
@GeneralException
# generate puppet files
def show_puppet(self, path, module):
# if not self.preprocessed:
# logging.error('Scanner.show_puppet(): No data')
# return
logging.info('Scanner.show_puppet(): Puppet files will be stored in path: %s' % path)
puppetdict = PuppetConverter(self.preprocessing('pysa.puppet'), self.filters)
p = puppetdict.run()
puppet = PuppetBuild(p, path, module)
puppet.run()
@GeneralException
# generate salt files
def show_salt(self, path, module):
# if not self.preprocessed:
# logging.error('Scanner.show_salt(): No data')
# return
logging.info('Scanner.show_salt(): Salt files will be stored in path: %s' % path)
saltdict = SaltConverter(self.preprocessing('pysa.salt'), self.filters)
s = saltdict.run()
salt = SaltBuild(s, path, module)
salt.run()
# print header
def print_header():
print "Pysa v"+VERSION_NBR
print '''
pysa - reverse a complete computer setup
Copyright (C) 2013 MadeiraCloud Ltd.
Thank you for using pysa!
Be aware that you are using an early-build (alpha release).
To provide the best result, ensure that you are not using an outdated version (check out http://github.com/MadeiraCloud/pysa or http://pypi.python.org/pypi/Pysa to get the latest version).
Please don't hesitate to report any bugs, requirements, advice, criticisms, hate or love messages to either [email protected] for public discussions and [email protected] for private messages.
'''
# option parser - user handler
def check_user(option, opt_str, value, parser):
if parser.values.user or parser.values.id:
setattr(parser.values, option.dest, True)
else:
raise OptionValueError("can't use -l without -u or -i (see usage)")
# option parser
def main_parse():
parser = OptionParser(usage=USAGE, version=VERSION)
parser.add_option("-c", "--config", action="store", dest="config",
help="specify config file"
)
parser.add_option("-p", "--puppet", action="store_true", dest="puppet", default=False,
help="scan packages and generate the puppet manifests"
)
parser.add_option("-s", "--salt", action="store_true", dest="salt", default=False,
help="[EXPERIMENTAL] scan packages and generate the salt manifests"
)
parser.add_option("-q", "--quiet", action="store_true", dest="quiet", default=False,
help="operate quietly"
)
parser.add_option("-m", "--module", action="store", dest="module", default="pysa",
help="define module name"
)
parser.add_option("-o", "--output", action="store", dest="output", default="./output",
help="Path to output"
)
parser.add_option("-f", "--filter", action="store", dest="filter",
help="add some user filters"
)
parser.add_option("-l", "--madeira", action="callback", callback=check_user, dest='l',
help="post data to madeira"
)
parser.add_option("-u", "--user", "--username", action="store", dest='user',
help="madeira username"
)
parser.add_option("-i", "--id", action="store", dest='id',
help="identify user id"
)
return parser.parse_args()
def main():
# print header
print_header()
# options parsing
options, args = main_parse()
__log(('ERROR' if options.quiet else 'INFO'))
output = (options.output if options.output else "./output")
module = (options.module if options.module else "pysa")
user = (options.user if options.user else None)
uid = (options.id if options.id else None)
# config parser
Config(options.config if options.config else None)
# filters parsing
filter_parser = FParser(options.filter if options.filter else None)
filters = filter_parser.run()
# scan for files
s = Scanner(filters)
s.scan()
# generate puppet output
if options.puppet:
s.show_puppet(output, module)
# generate salt output
if options.salt:
s.show_salt(output, module)
# save to madeira accound
if options.l:
m = Madeira(user, uid, output, module)
m.send()
if __name__ == '__main__':
main()