SpK's View Methods - Part 1 - The 'mobile method' (and disguising as Facebook/Twitter)

Status
Not open for further replies.
Works fine without changing anything.
I have your old bot from March (lucky me for keeping it! :D) and I have a question: Since the Params work without changing them, do I need to change anything on the Link? Currently, it is like this: m.youtube.com/mywatchlinketc
Or should I have to change the link with Facebook Referral: Referrer=URL?
I may be asking a basic question but can you or someone else answer this for me, please? Thank you! :)
 
I have your old bot from March (lucky me for keeping it! :D) and I have a question: Since the Params work without changing them, do I need to change anything on the Link? Currently, it is like this: m.youtube.com/mywatchlinketc
Or should I have to change the link with Facebook Referral: Referrer=URL?
I may be asking a basic question but can you or someone else answer this for me, please? Thank you! :)

no you dont as it use RTSP instead of HTTP! so the same link :)
 
People can beg all they want but I dont think the old RTSP bot works. I blasted a few videos on the RTSP with the mobile links and all the params from march and didnt get any results. I know takes a while sometimes but its been over 24 hours. Has anyone else seen results from this old bot?
 
People can beg all they want but I dont think the old RTSP bot works. I blasted a few videos on the RTSP with the mobile links and all the params from march and didnt get any results. I know takes a while sometimes but its been over 24 hours. Has anyone else seen results from this old bot?
can take up to 3days to show
 
Code:
        public long UnixTimeNow()
        {
            TimeSpan _TimeSpan = (DateTime.UtcNow - new DateTime(1970, 1, 1, 0, 0, 0));
            return (long)_TimeSpan.TotalSeconds;
        }
        private void Form1_Load(object sender, EventArgs e)
        {

            long playbackStartTime = UnixTimeNow();
            string rt = ((UnixTimeNow() - playbackStartTime) / 1000).ToString("N3");
            string rdm = "m4vdvn" + result;


            long Timestamp = ((DateTime.Now.Ticks - 621355968000000000L) / 10000);
            string Timestamp36 = Base36Encode(Timestamp);


            Random rnd = new Random();
            byte[] buffer = new byte[8];
            rnd.NextBytes(buffer);
            long longrandom = BitConverter.ToInt64(buffer, 0);
            Base36Encode(longrandom);
            string longrandom36 = Base36Encode(longrandom);


            string plid = Timestamp36 + longrandom36;
            }
this code gives me back >>> h32y5lh4impolfp4av0h
I think its a good PLID code...:eek: i think... thanks spk ones again

Ok with this code what do i put this in a a .bat file and get Plids? I need some help
 
Ok with this code what do i put this in a a .bat file and get Plids? I need some help

If you don't understand that, you might want to leave now... It can be a bit complicated getting this set up.
 
If you don't understand that, you might want to leave now... It can be a bit complicated getting this set up.

Well with that answer I am getting no where. If you wouldn't mind explaining to me what to do I would learn how to do it
 
Magic views perfectly for me :) blasted over 70k views already :)
 
People can beg all they want but I dont think the old RTSP bot works. I blasted a few videos on the RTSP with the mobile links and all the params from march and didnt get any results. I know takes a while sometimes but its been over 24 hours. Has anyone else seen results from this old bot?

They work for sure, just a video update with over 40k views, port forwarding Port 554 might fix the issue for you
 
I don't understand how to FULLY use fiddler but im sure there are some youtube videos :D! Sounds like an INCREDIBLY useful tool which i did not know existed until today
 
Hi all! the realization of the bot is going on :) I have a question,the field request.Referer what should refer? in the request, traced by fiddler, I found this value.
Code:
"h**p://s.y*u*u*e.c*m/index?desktop_uri=%2F&gl=IT";
Code:
                var requeststring = "h**p://s.y*u*u*e.c*m/s?on3g=0&app=youtube_mobile&preq=%2Fwatch%3Fajax%3D1%26feature%3Dmhee%26layout%3Dmobile%26tsp%3D1%26v%3DtlEP4kX7oSc&reloadCount=0&feature=mhee&";
                requeststring += "&rdm=" + rdm.ToString();
                requeststring += "&html5=1&ns=yt&ps=blazer&el=detailpage&hl=it&cr=IT&docid=tlEP4kX7oSc&";
                requeststring += "plid=" + plid.ToString();
                requeststring += "&fmt=18&fs=0&screenw=320&screenh=533&w=1&h=2&vw=0&vh=0&playerw=316&playerh=2&";
                requeststring += "rt=" + rt.ToString("N", nfi);
                requeststring += "&app=youtube_mobile&sw=1&";
                if (et < 5)
                {
                        requeststring += "playback=1&";
                }
                requeststring += "len=66.4&";
                requeststring += "st=" + st.ToString("N", nfi);
                requeststring += "&et=" + et.ToString("N", nfi);
                
                HttpWebRequest request = (HttpWebRequest)WebRequest.Create(requeststring);
                request.Referer = "h**p://m.y*u*u*e.c*m/index?desktop_uri=%2F&gl=IT";
                request.Method = "GET";
                request.UserAgent = "Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_0 like Mac OS X; en-us) AppleWebKit/532.9 (KHTML, like Gecko) Version/4.0.5 Mobile/8A293 Safari/531.22.7";
                request.Timeout = 10000;
                request.ReadWriteTimeout = 10000;


                try
                {
                    using (WebResponse response = request.GetResponse())
                    {
                        Stream dataStream = response.GetResponseStream();
                        Debug.WriteLine(response);
                    }


                }
                catch (WebException ex)
                {
                    Debug.WriteLine(ex.Message);


                }
sorry, but I can still respond to "pm"
 
Status
Not open for further replies.
Back
Top