• 02-09-2014, 16:52:50
    #73
    Lycos adlı üyeden alıntı: mesajı görüntüle
    Exede virüs buldu ?

    --R10.NET; Flood Engellendi -->-> Yeni yazılan mesaj 16:50:16 -->-> Daha önceki mesaj 16:49:24 --



    Aynen öyle 200 k api nerede var r10 twitter takipçi satışı yapanların apilerini toplasan anca 200 k yapar.
    Doğrudur, virus programı kullanmıyorum.
  • 02-09-2014, 16:54:13
    #74
    Üyeliği durduruldu
    Khloros adlı üyeden alıntı: mesajı görüntüle
    Doğrudur, virus programı kullanmıyorum.
    Keylogger falan değil dimi exe virüs buldu çünkü yapımcısı vs kim bellimi sıkıntı varmı.
  • 02-09-2014, 16:58:17
    #75
    Lycos adlı üyeden alıntı: mesajı görüntüle
    Keylogger falan değil dimi exe virüs buldu çünkü yapımcısı vs kim bellimi sıkıntı varmı.
    Az önce yazdım hocam. İçin rahat etmiyorsa buyur kodları kendin debug et kullan. Studio 2010 C#.

    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Windows.Forms;
    
    namespace twitterFollow
    {
        public partial class Form1 : Form
        {
            public Form1()
            {
                InitializeComponent();
            }
            public int next = 0;
            public bool done = true;
    
            private void button1_Click(object sender, EventArgs e)
            {
                timer1.Start();
            }
    
            private void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
            {
                webBrowser1.Navigate("javascript:if(document.getElementById('follow_btn_form').getAttribute('class') !== 'follow disabled') document.getElementById('follow_btn_form').submit();");
                done = true;
            }
    
            public void follow_next(string screenname)
            {
                @webBrowser1.Navigate("https://twitter.com/intent/follow?screen_name=" + screenname);
            }
    
            private void timer1_Tick(object sender, EventArgs e)
            {
                var
                       text = textBox1.Text;
                string[] split = text.Split('\n');
                if (done == true)
                {
                    done = false;
                    if (next >= split.Length)
                    {
                        timer1.Stop();
                        MessageBox.Show("Finito");
                    }
                    else
                    {
                        follow_next(split[next]);
                        next++;
                    }
                }
            }
    
            private void Form1_Load(object sender, EventArgs e)
            {
                webBrowser1.ScriptErrorsSuppressed = true;
                webBrowser1.Navigate("https://twitter.com/");
            }
        }
    }
  • 02-09-2014, 16:59:56
    #76
    Khloros adlı üyeden alıntı: mesajı görüntüle
    Az önce yazdım hocam. İçin rahat etmiyorsa buyur kodları kendin debug et kullan. Studio 2010 C#.

    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Windows.Forms;
    
    namespace twitterFollow
    {
        public partial class Form1 : Form
        {
            public Form1()
            {
                InitializeComponent();
            }
            public int next = 0;
            public bool done = true;
    
            private void button1_Click(object sender, EventArgs e)
            {
                timer1.Start();
            }
    
            private void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
            {
                webBrowser1.Navigate("javascript:if(document.getElementById('follow_btn_form').getAttribute('class') !== 'follow disabled') document.getElementById('follow_btn_form').submit();");
                done = true;
            }
    
            public void follow_next(string screenname)
            {
                @webBrowser1.Navigate("https://twitter.com/intent/follow?screen_name=" + screenname);
            }
    
            private void timer1_Tick(object sender, EventArgs e)
            {
                var
                       text = textBox1.Text;
                string[] split = text.Split('\n');
                if (done == true)
                {
                    done = false;
                    if (next >= split.Length)
                    {
                        timer1.Stop();
                        MessageBox.Show("Finito");
                    }
                    else
                    {
                        follow_next(split[next]);
                        next++;
                    }
                }
            }
    
            private void Form1_Load(object sender, EventArgs e)
            {
                webBrowser1.ScriptErrorsSuppressed = true;
                webBrowser1.Navigate("https://twitter.com/");
            }
        }
    }
    Deneyen varsa yorum atabilir mi arkadaşlar
  • 02-09-2014, 17:01:13
    #77
    Kimlik doğrulama veya yönetimden onay bekliyor.
    Khloros adlı üyeden alıntı: mesajı görüntüle
    Az önce yazdım hocam. İçin rahat etmiyorsa buyur kodları kendin debug et kullan. Studio 2010 C#.

    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Windows.Forms;
    
    namespace twitterFollow
    {
        public partial class Form1 : Form
        {
            public Form1()
            {
                InitializeComponent();
            }
            public int next = 0;
            public bool done = true;
    
            private void button1_Click(object sender, EventArgs e)
            {
                timer1.Start();
            }
    
            private void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
            {
                webBrowser1.Navigate("javascript:if(document.getElementById('follow_btn_form').getAttribute('class') !== 'follow disabled') document.getElementById('follow_btn_form').submit();");
                done = true;
            }
    
            public void follow_next(string screenname)
            {
                @webBrowser1.Navigate("https://twitter.com/intent/follow?screen_name=" + screenname);
            }
    
            private void timer1_Tick(object sender, EventArgs e)
            {
                var
                       text = textBox1.Text;
                string[] split = text.Split('\n');
                if (done == true)
                {
                    done = false;
                    if (next >= split.Length)
                    {
                        timer1.Stop();
                        MessageBox.Show("Finito");
                    }
                    else
                    {
                        follow_next(split[next]);
                        next++;
                    }
                }
            }
    
            private void Form1_Load(object sender, EventArgs e)
            {
                webBrowser1.ScriptErrorsSuppressed = true;
                webBrowser1.Navigate("https://twitter.com/");
            }
        }
    }
    @fuckitcarpediem hesabında yapıyorsun sanırım. Eğer bitince sorun olmazsa söyler misin
  • 02-09-2014, 17:03:01
    #78
    Khloros adlı üyeden alıntı: mesajı görüntüle
    Az önce yazdım hocam. İçin rahat etmiyorsa buyur kodları kendin debug et kullan. Studio 2010 C#.

    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Windows.Forms;
    
    namespace twitterFollow
    {
        public partial class Form1 : Form
        {
            public Form1()
            {
                InitializeComponent();
            }
            public int next = 0;
            public bool done = true;
    
            private void button1_Click(object sender, EventArgs e)
            {
                timer1.Start();
            }
    
            private void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
            {
                webBrowser1.Navigate("javascript:if(document.getElementById('follow_btn_form').getAttribute('class') !== 'follow disabled') document.getElementById('follow_btn_form').submit();");
                done = true;
            }
    
            public void follow_next(string screenname)
            {
                @webBrowser1.Navigate("https://twitter.com/intent/follow?screen_name=" + screenname);
            }
    
            private void timer1_Tick(object sender, EventArgs e)
            {
                var
                       text = textBox1.Text;
                string[] split = text.Split('\n');
                if (done == true)
                {
                    done = false;
                    if (next >= split.Length)
                    {
                        timer1.Stop();
                        MessageBox.Show("Finito");
                    }
                    else
                    {
                        follow_next(split[next]);
                        next++;
                    }
                }
            }
    
            private void Form1_Load(object sender, EventArgs e)
            {
                webBrowser1.ScriptErrorsSuppressed = true;
                webBrowser1.Navigate("https://twitter.com/");
            }
        }
    }
    programda twitterıma giriş yapamıyorum yazmama bile izin vermiyor program çalışıyo olabilir ama kullanımı zor biraz, klavyeyi bazen algılamıyo yazamıyorum yapıştır yapsam bile giriş yapa basıyorum bişey olmuyo çözemedim programı ama virüs veya keyloga benzer bi hali yok arkadaşa güvenin
  • 02-09-2014, 17:08:41
    #79
    Buralara neler olmuş böyle görmeyeli
  • 02-09-2014, 17:10:24
    #80
    Arkadaşlar önemli olan takip sorunu

    1k sonra sınır var onu çözmek önemli programı bende yazardım yoksa
  • 02-09-2014, 17:10:39
    #81
    Üyeliği durduruldu
    74 Online üye