mirror of
				https://github.com/sqlmapproject/sqlmap.git
				synced 2025-11-04 01:47:37 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			38 lines
		
	
	
		
			729 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			729 B
		
	
	
	
		
			Python
		
	
	
	
	
	
#!/usr/bin/env python
 | 
						|
 | 
						|
"""
 | 
						|
$Id$
 | 
						|
 | 
						|
Copyright (c) 2006-2010 sqlmap developers (http://sqlmap.sourceforge.net/)
 | 
						|
See the file 'doc/COPYING' for copying permission
 | 
						|
"""
 | 
						|
 | 
						|
# Removes duplicate entries in wordlist like files
 | 
						|
 | 
						|
import sys
 | 
						|
 | 
						|
if len(sys.argv) > 0:
 | 
						|
 | 
						|
    items = list()
 | 
						|
    f = open(sys.argv[1], 'r')
 | 
						|
 | 
						|
    for item in f.readlines():
 | 
						|
        item = item.strip()
 | 
						|
        try:
 | 
						|
            str.encode(item)
 | 
						|
            if item in items:
 | 
						|
                if item:
 | 
						|
                    print item
 | 
						|
            else:
 | 
						|
                items.append(item)
 | 
						|
 | 
						|
            if not item:
 | 
						|
                items.append('')
 | 
						|
        except:
 | 
						|
            pass
 | 
						|
    f.close()
 | 
						|
 | 
						|
    f = open(sys.argv[1], 'w+')
 | 
						|
    f.writelines("\n".join(items))
 | 
						|
    f.close()
 |