mirror of https://github.com/MISP/PyMISP
				
				
				
			
		
			
				
	
	
		
			25 lines
		
	
	
		
			585 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
			
		
		
	
	
			25 lines
		
	
	
		
			585 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
| #!/usr/bin/env python
 | |
| # -*- coding: utf-8 -*-
 | |
| 
 | |
| from pymisp import PyMISP
 | |
| from keys import misp_url, misp_key, misp_verifycert
 | |
| import argparse
 | |
| 
 | |
| # For python2 & 3 compat, a bit dirty, but it seems to be the least bad one
 | |
| try:
 | |
|     input = raw_input
 | |
| except NameError:
 | |
|     pass
 | |
| 
 | |
| 
 | |
| def init(url, key):
 | |
|     return PyMISP(url, key, misp_verifycert, 'json')
 | |
| 
 | |
| if __name__ == '__main__':
 | |
|     parser = argparse.ArgumentParser(description='Get a list of the sharing groups from the MISP instance.')
 | |
| 
 | |
|     misp = init(misp_url, misp_key)
 | |
| 
 | |
|     users_list = misp.get_users_list()
 | |
|     print (users_list)
 |