mirror of https://github.com/MISP/PyMISP
				
				
				
			
		
			
				
	
	
		
			30 lines
		
	
	
		
			936 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
			
		
		
	
	
			30 lines
		
	
	
		
			936 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
| #!/usr/bin/env python
 | |
| # -*- coding: utf-8 -*-
 | |
| 
 | |
| from pymisp import ExpandedPyMISP
 | |
| try:
 | |
|     from keys import url, key
 | |
| except ImportError:
 | |
|     url = 'http://localhost:8080'
 | |
|     key = '8h0gHbhS0fv6JUOlTED0AznLXFbf83TYtQrCycqb'
 | |
| import argparse
 | |
| import tools
 | |
| 
 | |
| 
 | |
| if __name__ == '__main__':
 | |
|     parser = argparse.ArgumentParser(description='Create a given number of event containing a given number of attributes eachh.')
 | |
|     parser.add_argument("-l", "--limit", type=int, help="Number of events to create (default 1)")
 | |
|     parser.add_argument("-a", "--attribute", type=int, help="Number of attributes per event (default 3000)")
 | |
|     args = parser.parse_args()
 | |
| 
 | |
|     misp = ExpandedPyMISP(url, key, True)
 | |
|     misp.toggle_global_pythonify()
 | |
| 
 | |
|     if args.limit is None:
 | |
|         args.limit = 1
 | |
|     if args.attribute is None:
 | |
|         args.attribute = 3000
 | |
| 
 | |
|     for i in range(args.limit):
 | |
|         tools.create_massive_dummy_events(misp, args.attribute)
 |