Jump to content

hawksprite

Active Members
  • Posts

    22
  • Joined

  • Last visited

Posts posted by hawksprite

  1. Although SSH and wget maybe a little more easier. It would be a lot more fun and, hacker like, to write a script/program that checks an email for URL's.

    Also, you could get fancy with it. For instance you could have your main-pc take all the links \, that have files bigger then 2gb, and wait to start downloading till you go to work. Then keep a log of all the files you've downloaded for later reference.

  2. I want to get more into hacking but i'm not sure what to read/do/mess around with. Currently the extent of my capabilities would be some MITM, and breaking WEP ( nothing amazing ). I don't know where to go next, maybe reverse engineering some software, or breaking into Windows box's. Any Tutorials or points in the right direction would be nice, thanks.

  3. If I'm not mistaken this is .NET? Maybe?

    If so, try searching through MSDN for an ftp function you could use? Maybe?

    I've never worked with .NET, but I do know that for a Microsoft run information database, MSDN is quite amazing in finding what you're looking for in regards to a function.

    Yeah it's .NET i found what i was looking for, thank you for the tip. I'll post a link in case someone else needs it.

    http://www.logiclabz.com/c/ftp-file-upload...t-in-net-c.aspx

  4. I have a program that saves every time the text is changed(Code Below) It currently saves to a local .txt file. I need it to save to a remote location (e.x. http://hawksprite.com/files/yourname/stuff.txt) But am not sure how to do it. Is there a ftp function that i can use? Much help needed, thanks.

            private void text_TextChanged(object sender, EventArgs e)
            {
    
                System.IO.StreamReader myFile2 =
                new System.IO.StreamReader("settin/fl.txt");
                string stati = myFile2.ReadToEnd();
                myFile2.Close();
                if (stati == "true")
                    stat.Text = "Fluid Save Is On.";
                else
                    stat.Text = "Fluid Save Is Off.";
    
    
                System.IO.StreamReader myFile =
                new System.IO.StreamReader("settin/fl.txt");
                string fls = myFile.ReadToEnd();
                myFile.Close();
    
                if (fls == "true")
                {
                    save.Text = "saving....";
    
                    using (StreamWriter sw = new StreamWriter("settin/ftext.txt"))
                    {
                        // Add the document text to the file.
                        sw.Write(text.Text);
                    }
    
                    save.Text = "Done";
                }
                else 
                {
    
                };
            }

  5. If you're connecting through this router, it's going to know you're there. If it ignored your machine, you wouldn't be able to get any network traffic.

    What are you trying to do (or I guess WHY are you trying to do it)? What sort of environment are you in? Do you have admin access to the router? What kind of router (if you know)?

    If you're in an environment with multiple routers you might be able to route around that particular router, but usually there's only one gateway on a network, and I'm betting that's the router you're trying to avoid.

    -B

    Theres only one router. I have one other solution i could use to fix the problem but involves my ipod touch. Do you know of a way i can use my ipods touch WIFI on my laptop. I would need to connect the ipod touch to the internet then have my laptop use that internet without my laptop connecting to the router. Does anyone no how to do this?

  6. I have a question. Is there anyway to hide a computer from a router (etc. looking at a routers web interface to see what computers are online) or just hide your online status but still connect to the internet? I have a vista laptop and would like to use the internet without it showing up as me connected to the internet in the routers web interface. By the way i am on a vista laptop. Thanks.

  7. You have to go to the computer the file is on. Then put it in Public Documents I think that's the name for it on Vista.

    Thank you. But how do you get to those public documents on another computer?

  8. I'm working on a myspace bot that posts around 50-100 comments on someones profile (i don't use myspace i actually hate it, my friend is paying me for the bot). I am writing the hole thing in Visual c# and i can't figure out how to get a string to put it's self in a form on a website and then submit the form. Much help would be appreciated. Thanks.

  9. I'm having a problem on the same topic so instead of making a new thread im just gonna ask it here. I am setting up a home network with vista. And i would like to know how to get to the files on other computers in my house from my laptop, everything is on the same router but my laptop is the only thing that is wireless. I just need to get to the files on them from my laptop without plugging anything in. Much help would be appreciated thanks.

  10. A lot of this seems to be going beyond the spirit of the original challenge.

    BTW, the comments about using portable Ubunutu, last time I heard about it it neede admin privs to work so wouldn't help in this situation.

    I'm pretty sure thats not what they meant. I think they mean to get the live cd and boot of it so you DO have admin privlages on that computer.

  11. redxine: Not all Public School IT admins are stupid. Yes we are underpaid, but it doesn't mean that we don't know what we are doing anf that we don't do our job.

    hawksprite: Its against the forum rules to even ask. If you, the O.P., and the rest of the kids would learn to read, you'd have known that.

    goodbye.

    If that is the case can someone please lock this thread?

  12. Boot Ubuntu live disk, go to google.com

    Complete agreement it would be very easy to do this and allmost impossible to block (unless he chagned the boot bios and put a password on it) then your gonna need a screwdriver and some duck tape.

  13. WOW People are real dicks in this forum. Seriuslly though you have 2 easy options, options 1 ultrasurf, option 2 get Putty and ssh to a server somehwere (a.k.a hak5 did a episode on the ssh tunneling, actually 2 just search ssh tunneling).

    1. Ultra Surf

      well for ultra surf you can download it here.

    2. SSH Tunnel

      and as i said earlier just watch the hak5 episodes on ssh tunneling.

    Hope This Helps. Happy Hacking!

  14. Depending on what version of IE you have installed, I think IE6 and lower use something called shdocvw.dll and IE7 and later use IEFRAME.dll

    Take a look here:http://developer.mozilla.org/en/docs/Embedding_Mozilla Might be of some help using an alternative to IE.

    From the look of it you might have to change that on the computer it's self and not the program. This program will be put on other computers so I would rather it not tamper with existing software on the computer.

  15. If your using any of the modules from the microsoft IDE, they use IE by default. I think you would have to script something from scratch or find a way to port dll's from other browsers to use them within your app. Maybe rip some code from FireFox/mozilla since they make the source code available.

    That's what I was thinking but I can't figure out how to port them in. I can't find the source in my app that gets the dll's for IE.

  16. I have come across a problem while developing a windows app. I need some web browsing functionallity and when I add this it allways does all the rendering in IE. I am doing this in visual c#. Is there anyway I can add HTML rendering and give people the option to browse the web in my form without using IE. Much help needed I have allready googles it and came up with nothing.

    Edit: it just occured to me that I put this in the wrong topic sorry )=

  17. This is my first post so bear with me. The problem is i have two keyboards running on one computer and i would like to remap just one of them. Editing the registry doesnt seem to work because then it remaps both keyboards. I would like to know how to change just one keyboard, if it helps the keyboard i want to remap is a TANDY if that helps any. Hope there is an answer to the problem.

×
×
  • Create New...