VirusTotal.com Link:
steam.dll:
	
	
		
			
			
				
				VirusTotal
				
					
						
							
						
					
					www.virustotal.com
				
 
			 
		 
	 
csgo.dll:
	
	
		
			
			
				
				VirusTotal
				
					
						
							
						
					
					www.virustotal.com
				
 
			 
		 
	 
Analyze suspicious files to detect types of malware.
Screenshot of Cheat Menu:
CFG Path:  Steam\steamapps\common\Counter-Strike Global Offensive\primordial
In this edition you can customize so many things (clantag, clantag symbol, uid, user name, and build type [ac130 or dev])
You can find the file (user.json) at primordial folder after the first inject. (after you edit it you must reinject)
-> You must run steam as admin 

- Inject steam.dll into steam.exe
- Inject csgo.dll into csgo.exe
To edit the clantag symbol, you need the bytes for it
Simple py code to get it 
``
def convert(symbol):
    utf8_bytes = symbol.encode('utf-8')
    byte_values = [byte for byte in utf8_bytes]
    return byte_values
for byte in convert("♡"): # the symbol
    print(byte, end=", ")
``