The scan shows my web server is vulnerable with these below ones with no instructions on how to fix them
web resource /admin/actions globally detected
web resource /demo/index.jsp global detected
.....
Does any one know how to fix those vulnerabilities?
Thank you in advanced
v/r
Eirikr
Here is my main.aspx page
<% Response.Write("status: " + ddl_1.SelectedIndex); %>
<div>
<asp:SqlDataSource ID="sds_1" runat="server"
ConnectionString="<%$ConnectionStrings:... %>"
ProviderName="<%$ ConnectionStrings:... %>"
//-- ISSUE is here: if status=-1 i want to use this sql...
Yes, what i mean for debugging, so i can see what the value i get from selecting status, so i can set up sqlcommand like:
if status==-1 (list all the resords)
<asp: sqldatasource ...
selectCmd = "select * from table where status is not null"
else status=='Open'
selectCmd = "select * from table...
In main.aspx page, i have a drop down list:
<asp:DropDownList ID="ddl" runat="server" DataSourceID="filter_datasource"
DataTextField="status"
DataValueField="status"
AppendDataBoundItems="True"
AutoPostBack="True"...
In main.aspx page, i have a drop down list:
<asp:DropDownList ID="ddl" runat="server" DataSourceID="filter_datasource"
DataTextField="status"
DataValueField="status"
AppendDataBoundItems="True"
AutoPostBack="True"...
hello all
i have a guest_link table with a column "contents" has value: <-- #include file="guest.inc" -->
in my asp code, i pull that data out of database
<%=contents%> and i expect it'll call that file.inc, but it does not.
Instead it gives me a text string printed on the screen <-- #include...
I used Import/Export wizards in mssqlserver management studio to migrate data from excel sheet to sql server 05
I followed exactly what were shown in the book:
-data src: ms excel
with excel file path, then next
with dest, i tried either:
-dest: OLEBD for sql, or SQL native client
with my...
i get an error message when i try to import an excel databse into a table in sqlserver 2005, the error something about connection to sql failed, no such host is known when i set ms sql native client. Please tell me why, and what should i do. Thanks
Having 4 tables
System has columns: id, sysName
PC has has columns: id, serialNum
Mac has has columns: id, macAddr
IP has has columns: id, ipAddr
Example:
System Serial Mac IP
Sys1 Ser1 Mac1 IP1
Sys1 Ser1 Mac2 IP2
How can I make the output like
Sys1 Ser1 “Mac1; Mac2” “IP1; IP2”...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.