Jump to content

freeb

Active Members
  • Posts

    22
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

freeb's Achievements

Newbie

Newbie (1/14)

  1. I'm sure Darren did a segment about something like this in a previous season.
  2. What version of Windows?
  3. Hmm, I would if there is a DNS server out there that can serve up different records depending on the requesting client. So for instance when your target makes a DNS request it receives the address of your fake login page and when any other client makes a request it gets the genuine address. Like Sparda has suggested you could use a MITM attack. What about setting up a proxy, because you have access to your target you could point its web browser to your proxy, and redirect that way. Also continuing the proxy idea how about using a transparent proxy which would not require any configuration on the target.
  4. That will work providing you have VLANs or routers between each subnet.
  5. Have a look at http://www.http-com.com/ Its web based and has AD intergation, but it's not free, although the demo is.
  6. Hi, did you research this before posting? Because a little googling threw up this http://www.msfn.org/board/lofiversion/index.php/t17081.html
  7. Thats awesome, go for it! I'm sure it will be a great learning experience. I saw something on the net a while back amount somone who built their own CPU, interesting stuff.
  8. When you submit a form using the GET method form values will appear in the url. http://localhost/form.php?name=Mr+Smith&age=101&submit=submit GET /form.php?name=Mr+Smith&age=101&submit=submit HTTP/1.1 Host: localhost User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.9.0.5) Gecko/2008120122 Firefox/3.0.5 (.NET CLR 3.5.30729) Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Language: en-gb,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 300 Connection: keep-alive Referer: http://localhost/form.php With the POST method the form values get sent in the body of request and therefore not shown in the url. http://localhost/form.php POST /form.php HTTP/1.1 Host: localhost User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.9.0.5) Gecko/2008120122 Firefox/3.0.5 (.NET CLR 3.5.30729) Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Language: en-gb,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 300 Connection: keep-alive Referer: http://localhost/form.php Content-Type: application/x-www-form-urlencoded Content-Length: 35 name=Mr+Smith&age=101&submit=submit
  9. freeb

    Rogue Router??

    You can trace it manually by doing 'show mac-address-table' and then following the trail. Look for the MAC address of the rogue device and then follow the port number to the next switch, repeat again until you reach the rogue device. I just tested this in packet tracer and it works great.
  10. I had one of those too when I was younger, this exact model, a 30 in 1:
  11. http://www.allaboutcircuits.com/
  12. With char *a = "some text"; just be aware that it is read only. While you could do char first = a[0]; you could not do a[0] = 's'; However with char[] = "some text"; you can.
  13. freeb

    ARP

    /me nods Layer 2, MAC, addresses are segment local. You send a packet to google the source and destination IP addresses remain the same. Though as the packet traverses the internet its source and destination MAC addresses will change from segment to segment. Gotta love the OSI man. All Pupils Sniff The Network Data Packets, thats one way to remeber it by! :P
  14. / * This is a simple way to initialise a character array, the compiler will work out of the length of the string and place it in the sqaure brackets. */ char mystr[] = "this is my string" /* Like I said in my previous post you cannot do text = "blaa blaah" (EDIT: Again this may be wrong.) You have to use the strcpy function. */ /* EDIT: make sure mystr has enough memory allocated to it to handle the length of the string your going to copy */ strcpy(mystr, "new string value"); Read more here -> http://www.iso-9899.info/wiki/StringsByExample and here ->http://www.iso-9899.info/wiki/String
  15. Remember this is Objective-C not C. /* I know for a fact that you can't do something like this in C EDIT: Actually I may be wrong >.< */ text = "mystring"; However this is Obj-C of which I'm not familiar with, Sorry. /me wonders if TomB is around, he would be able to help you.
×
×
  • Create New...