Work Area
Hijack This step by step - http://forums.techguy.org/malware-removal-hijackthis-logs/474303-solved-trojan-adclicker.html
Code Behind
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.OleDb;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void btnClick_Click(object sender, EventArgs e)
{
OleDbConnection a = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + Server.MapPath(".\\db\\rao.mdb"));
if (Name.Text == "")
{
string update = "Update rao Set Name = ?, Address = ? WHERE ID = 1";
using (OleDbConnection conn = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + Server.MapPath(".\\db\\rao.mdb")))
{
using (OleDbCommand cmd = new OleDbCommand(update, conn))
{
cmd.CommandType = CommandType.Text;
cmd.Parameters.AddWithValue("Name", " ");
cmd.Parameters.AddWithValue("Address", Address.Text);
conn.Open();
cmd.ExecuteNonQuery();
conn.Close();
}
}
}
else if (Address.Text == "")
{
string update = "Update rao Set Name = ?, Address = ? WHERE ID = 1";
using (OleDbConnection conn = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + Server.MapPath(".\\db\\rao.mdb")))
{
using (OleDbCommand cmd = new OleDbCommand(update, conn))
{
cmd.CommandType = CommandType.Text;
cmd.Parameters.AddWithValue("Name", Name.Text);
cmd.Parameters.AddWithValue("Address", " ");
conn.Open();
cmd.ExecuteNonQuery();
conn.Close();
}
}
}
else
{
string update = "Update rao Set Name = ?, Address = ? WHERE ID = 1";
using (OleDbConnection conn = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + Server.MapPath(".\\db\\rao.mdb")))
{
using (OleDbCommand cmd = new OleDbCommand(update, conn))
{
cmd.CommandType = CommandType.Text;
cmd.Parameters.AddWithValue("Name", Name.Text);
cmd.Parameters.AddWithValue("Address", Address.Text);
conn.Open();
cmd.ExecuteNonQuery();
conn.Close();
}
}
}
}
}
Defalut.aspx
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server"> <title>Insert </title> </head> <body> <form id="form1" runat="server"> <div> Name: <asp:TextBox ID="Name" runat="server" Text='<%# Eval("Name")%>'></asp:TextBox><br /> <br /> Address: <br /> <asp:TextBox ID="Address" runat="server" Height="96px" TextMode="MultiLine" Width="446px"></asp:TextBox><br /> <br /> <asp:Button ID="btnClick" runat="server" OnClick="btnClick_Click" Text="Update" Width="145px" /><br /> <br /> <asp:HyperLink ID="HyperLink1" runat="server" NavigateUrl="~/Page2.aspx">See the Names</asp:HyperLink></div> </form> </body> </html>
Comments
http://www.telerik.com/demos/aspnet/Grid/Examples/DataEditing/EditModes/DefaultCS.aspx
The Find method returns the DataRow object with a specific value in its primary key (in this case, au_id). After you have that DataRow, you can modify the columns. You do not have to wrap the modifications in BeginEdit and EndEdit, but this simplifies the work that the DataSet has to do and allows the DataSet to perform its validation checks simultaneously when EndEdit is called. Paste the following code after the ADD code:*****
BEGIN EDIT CODE
drCurrent = tblAuthors.Rows.Find("213-46-8915");
drCurrent.BeginEdit();
drCurrent["phone"] = "342" + drCurrent["phone"].ToString().Substring(3);
drCurrent.EndEdit();
Console.WriteLine("Record edited successfully, Click any key to continue!!");
Console.ReadLine();
// END EDIT CODE
int ExecuteNonQuery(); • Executes the non-query operation specified in CommandText– UPDATE– INSERT – DELETE – CREATE TABLE – …• Result is number of affected rows Example: cmd.CommandText = "UPDATE Empls SET City = ’Seattle’ WHERE iD=8";int affectedRows = cmd.ExecuteNonQuery();
http://www.softwareresearch.net/site/teaching/WS0405/pe/20041209/05.ADO.NET.pdf
Internship Number: 1378
Internship Title: WEB DEVELOPMENT INTERN
Description: Puredata is a software company for luxury hotels, seeking an intern who has knowledge of HTML for web development. Intern can work from home.
Company: Puredata
Area of Study: Computer Information Systems
Education Completed: 50 Percent
Wage: Paid
No of Hours: 20 hours a week
Potential Hire: yes
http://www.mikesdotnetting.com/Article.aspx?ArticleID=26
http://www.devnewz.com/devnewz-3-20061129JavaScriptAlertShowmessagefromASPNETCodebehind.html
http://www.tizag.com/website-templates/search.html?category=29
http://homepage.ntlworld.com/adam.bozon/scrabblelists.htm
http://lifehacker.com/software/dvds/hack-attack-burn-almost-any-video-file-to-a-playable-dvd-232322.php
http://paininthetech.com/2006/04/30/how-to-back-up-a-dvd/
http://www.buddiesinfotech.com/web/contact_us.php