<?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/"
	>

<channel>
	<title>Delphi блог Димаса &#187; faza02</title>
	<atom:link href="http://parsers.info/author/faza02/feed/" rel="self" type="application/rss+xml" />
	<link>http://parsers.info</link>
	<description>Delphi блог Димаса: программирование на delphi, парсеры, статьи, размышления</description>
	<lastBuildDate>Fri, 20 Jan 2012 19:51:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>DirSearcher</title>
		<link>http://parsers.info/2009/05/dirsearcher/</link>
		<comments>http://parsers.info/2009/05/dirsearcher/#comments</comments>
		<pubDate>Thu, 28 May 2009 18:36:43 +0000</pubDate>
		<dc:creator>faza02</dc:creator>
				<category><![CDATA[Кодинг]]></category>
		<category><![CDATA[Софт]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[сканер директорий]]></category>

		<guid isPermaLink="false">http://parsers.info/?p=355</guid>
		<description><![CDATA[DirSearcher &#8211; это сканер директорий. Логи сайта ведет в c:/сайт_log.txt #!/usr/bin/python #header scan #http://sql.parsers.info/ #faza02[at]gmail[dot]com import urllib def scan(): print ' ____________________________ ' print ' / /\ ' print ' / _/ /\ ' print ' / by faza02 / \/ ' print ' / /\ ' print '/___________________________/ / ' print '\___________________________\/ ' print [...]]]></description>
			<content:encoded><![CDATA[<p><strong>DirSearcher</strong> &#8211; это сканер директорий.<br />
Логи сайта ведет в c:/сайт_log.txt<br />
<span id="more-355"></span></p>
<pre name="code" class="py">#!/usr/bin/python
#header scan
#http://sql.parsers.info/
#faza02[at]gmail[dot]com

import urllib
def  scan():
	print '     ____________________________  '
	print '    /                           /\ '
	print '   /                          _/ /\ '
	print '  /         by faza02         / \/ '
	print ' /                           /\   '
	print '/___________________________/ / '
	print '\___________________________\/ '
	print ' \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ '

	good = [100, 101, 200, 201,202, 203,204,205, 206, 300, 301, 302, 303, 304, 305]

	site = raw_input(u'\nsite: ')
	dirlist = raw_input(u'dirs: ')

	fileopen = open(dirlist, 'a+').readlines()
	for i in range(len(fileopen)):
	 	state = urllib.urlopen('http://' + site + fileopen[i][:-1]).getcode()
	 	if state in good:
	 	 print fileopen[i][:-1] + ' - ' + str(state)
	 	open('c:/'+site+'_log.txt', 'a+').write(fileopen[i][:-1] + ' - ' + str(state) + '\n')

scan()
print '\nok!'</pre>
<p>by <strong>faza02</strong>.</p>
<p>А если скрипт не работает, может быть у вас лагает интернет и вам нужно <a href="http://www.microtest.ru/hardware/networking/">обслуживание сетей</a>? :)<br />
<a href="http://sql.parsers.info">http://sql.parsers.info</a><br />
<a href="http://parsers.info">http://parsers.info</a></p>

	<h4>Похожие записи</h4>
	<ul class="st-related-posts">
	<li>Нет похожих записей.</li>
	</ul>

]]></content:encoded>
			<wfw:commentRss>http://parsers.info/2009/05/dirsearcher/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vkontakte Friends Gop-Stoper by faza02</title>
		<link>http://parsers.info/2009/04/vkontakte-friends-gop-stoper/</link>
		<comments>http://parsers.info/2009/04/vkontakte-friends-gop-stoper/#comments</comments>
		<pubDate>Mon, 27 Apr 2009 18:49:26 +0000</pubDate>
		<dc:creator>faza02</dc:creator>
				<category><![CDATA[Кодинг]]></category>
		<category><![CDATA[Софт]]></category>
		<category><![CDATA[vkontakte]]></category>
		<category><![CDATA[парсер]]></category>

		<guid isPermaLink="false">http://parsers.info/?p=246</guid>
		<description><![CDATA[Vkontakte Friends Gop-Stoper &#8211; это скрипт на питоне для парсинга всех друзей со страницы. Вводите email, password и id. Затем скрипт парсит и сохраняет в c:/ids.txt в формате http://vkontakte.ru/id******* Вот и сам скрипт: #!/usr/bin/env python # -*- coding:windows-1251 -*- #Vkontakte Friends Gop-Stoper #http://sql.parsers.info/ #faza02[at]gmail[dot]com import urllib2, cookielib, time, os, re def xek(): email = raw_input(u'\ne-m4il: [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://parsers.info/wp-content/uploads/2009/04/ac4hsq1ot61.png"><img src="http://parsers.info/wp-content/uploads/2009/04/ac4hsq1ot61-300x148.png" alt="Vkontakte Friends Gop-Stoper by faza02" title="Vkontakte Friends Gop-Stoper by faza02" width="300" height="148" class="aligncenter size-medium wp-image-257" /></a></p>
<p><strong>Vkontakte Friends Gop-Stoper</strong> &#8211; это скрипт на <strong>питоне</strong> для <strong>парсинга всех друзей</strong> со страницы.<br />
Вводите <strong>email, password</strong> и <strong>id</strong>. Затем скрипт парсит и сохраняет в c:/ids.txt в формате<br />
<code></p>
<p>http://vkontakte.ru/id*******</p>
<p></code><br />
Вот и сам скрипт:<br />
<span id="more-246"></span></p>
<pre name="code" class="py">
#!/usr/bin/env python
# -*- coding:windows-1251 -*-
#Vkontakte Friends Gop-Stoper
#http://sql.parsers.info/
#faza02[at]gmail[dot]com

import urllib2, cookielib, time, os, re

def xek():

	email = raw_input(u'\ne-m4il: ')
	password = raw_input(u'passw0rd: ')
	idd = raw_input(u'id: ')
	print '\n[+] ok, wait..'

	cookie = cookielib.CookieJar()
	opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cookie))
	urllib2.install_opener(opener)
	headers = {"User-Agent" : "Mozilla/4.0 (compatible; MSIE 5.5; WindowsNT)" }
	urllib2.urlopen(urllib2.Request('http://vkontakte.ru/login.php?email='+email+'&amp;pass='+password, None, headers))

	time.sleep(3)
	frie = str(urllib2.urlopen(urllib2.Request('http://vkontakte.ru/friend.php?id=' + idd, None, headers)).read())
	number = re.findall(r'\{\p\:\'http\:\/\/.*?\.vkontakte\.ru\/u(\d+)\/b\_.*?\.jpg\'', frie)
	cho = str(number).replace(' \'', 'http://vkontakte.ru/id')
	cho = cho[1:-1]
	cho = cho.replace('\'','')
	qq = open('c:/ids.txt', 'a+')
	qq.write('http://vkontakte.ru/id')
	qq.write(cho.replace(',','\n'))
	qq.close()

	print '\n[+] friends sav3d'

os.system("cls")
print 'Vkontakte Friends Gop-Stoper\n c0d3d by faza02\n  sql.parsers.info'
xek()
</pre>
<p>by <strong>faza02</strong>.<br />
<a href="http://sql.parsers.info">http://sql.parsers.info</a><br />
<a href="http://parsers.info">http://parsers.info</a></p>
<p>Между делом тут ремонтом занялся, купил такие вещи, как <a href="http://www.fansnab.ru/fanera-vlagostojkaja-fsf.php">фанера фсф</a>, гипрок и т.п. Будем работать :)</p>

	<h4>Похожие записи</h4>
	<ul class="st-related-posts">
	<li><a href="http://parsers.info/2010/01/function-copy-ili-vosstanavlivaem-parol-icq-posle-zarazheniya-virusom-piggy/" title="Функция copy или восстанавливаем пароль icq после заражения вирусом Piggy. (19 Январь 2010)">Функция copy или восстанавливаем пароль icq после заражения вирусом Piggy.</a> (41)</li>
	<li><a href="http://parsers.info/2008/06/zparser/" title="zparser (23 Июнь 2008)">zparser</a> (0)</li>
	<li><a href="http://parsers.info/2008/11/reparser/" title="reparser (30 Ноябрь 2008)">reparser</a> (4)</li>
	<li><a href="http://parsers.info/2010/01/feed-link-parser/" title="Feed link parser (6 Январь 2010)">Feed link parser</a> (19)</li>
	<li><a href="http://parsers.info/2009/02/dup_counter-v1/" title="dup_counter [v1] (17 Февраль 2009)">dup_counter [v1]</a> (2)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://parsers.info/2009/04/vkontakte-friends-gop-stoper/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
	</channel>
</rss>

