Esempio n. 1
0
def main(): #main function
	'''
	main function of ZCR Shellcoder
	'''
	if argv_control.exist() is not True: #if execute without any argv
		start.start() #show start page and exit
	else:
		if argv_control.check() is True: #check argv, if entered accurately
			analyser.do(argv_control.run()) #go for generating
			start.sig() #print software signature and exit
		else:
			start.inputcheck()
Esempio n. 2
0
def main():
	'''
	main function of ZCR Shellcoder
	'''
	if argv_control.exist() is not True:
		process = start.start()
		sys.exit(0)
	if argv_control.exist() is True:
		process_check = False
		if argv_control.check() is True:
			process_check = True
			analyser.do(argv_control.run())
			start.sig()
		if process_check is False:
			start.inputcheck()
Esempio n. 3
0
def main():
	'''
	main function of ZCR Shellcoder
	'''
	if argv_control.exist() is not True:
		process = start.start()
		sys.exit(0)
	if argv_control.exist() is True:
		process_check = False
		if argv_control.check() is True:
			process_check = True
			analyser.do(argv_control.run())
			start.sig()
		if process_check is False:
			start.inputcheck()