DiffPlex 1.0 released

by kad1r 10. March 2010 12:43
The DiffPlex project is a combination of a .NET Diffing Library with a Silverlight and HTML diff viewer. It is released open source under the MS-PL license. Click to go official release.
There is an API to use it and click here to learn how to use API.

 

Tags: , ,

.Net | Released | Silverlight

New webpage directory

by kad1r 10. March 2010 10:13

My company released a new directory webpage. You can add your website (no code) and give some comment and point than earn gifts.

Tags: , , , ,

Released | Seo | Web Design

VS2010 Intellisense Patch

by kad1r 8. March 2010 10:01
In VS 2010 there are some problems with intellisense. For Beta2 users this patch is very useful.

Tags: , ,

.Net | Released

SQL Server 2008 Operating System Error:5 Solution

by kad1r 4. March 2010 14:32
As you know I bought a new harddrive and I reinstalled my OS (Windows 7 32Bit). I also reinstalled SQL Server 2008 and Visual Studio 2008. When I try to attach my databases I got "Operating System Error:5". There are two solutions.

1. Right click to the SQL Server Management Studio and click "Run as Administrator".
2."Control panel->administrative tools->services-> SQL Server at the properties and choose "log on as: local system account and also choosed to allo service to interact with desktop".
Second one is worked for me but first one was not work.

Katana v1.5 released

by kad1r 4. March 2010 13:23
What is Katana? (Linux Multiboot DVD)
For those who are not familiar with the project, Katana combines hundreds of security tools to run off a single USB thumb drive. Katana brings together many of the best security distributions (Backtrack, Ophcrack, UBCD, Trinity Rescue Kit, Derik's Boot and Nuke, etc.) along side hundreds of portable Windows applications (Wireshark, HiJackThis, OllyDBG, The Sleuth Kit, ClamAV, FindSSN, AngryIP , etc.) to form a Portable Multi-Boot Security Suite. Katana includes distributions and Windows applications which focus on Pen-Testing, Auditing, Forensics, System Recovery, Network Analysis, Malware Removal and more.
Katana is also highly customizable. One of the major goals in the project was to develop an environment where users could tailor Katana to their needs. Users can customize Katana by adding and removing Distros and Portable Applications with relative ease. The best resource for these sorts of modifications is the Hack From A Cave Forum.


Katana v1.5

Backtrack 4, the Ultimate Boot CD, Ultimate Boot CD for Windows, Ophcrack Live, Puppy Linux, Kaspersky Live, Trinity Rescue Kit, Clonezilla and Derik's Boot and Nuke. Users can still customize Katana to add thier favorite distros using.

Katana Toolkit
The Katana Tool Kit (KTK) is a suite of Windows applications which can be run of a USB Flash Drive. Without the need for installation on the base system, users can bring a suite of uncompromised tools with them anywhere. Tools like Wireshark, HiJackThis, Firefox, PuTTY, Unstoppable Copier, OllyDBG, ProcessActivityView, SniffPass Password Sniffer, ClamAV, Undelete Plus, IECookiesView, MozillaCacheView, FreeOTFE, The PC Decrapifier, FindSSN, The Sleuth Kit, and OpenOffice. There are over 100 unique projects included in the KTK.
(See the full list of tools here)
The KTK facilitates fast access to all the Katana Windows applications. The applications are broken down into the following categories: Anti-Virus, Backup, Encryption, File System, Forensics, Media, Networking, Office, Recovery, Registry, System, Utilities. Each project provides unique functionality to the various categories listed above.
The KTK also facilitates the easy addition of other portable applications. By simply installing applications to a sub-folder of the "PortableApps" directory, your favorite applications will appear in the KTK the next time it is launched.
USB Write Blocker
A USB write blocker application has been added to help prevent malware installing on the USB Flash Drive and to prevent the anti-virus from deleting any of the totally awesome apps from the Katana Tool Kit. By running the MakeUSBReadOnly.bat on mount, unmounting and remounting the drive, going about you business, and running MakeUSBWritable.bat after you are done, you can prevent most interference by applications on the base OS.

Acunetix v6.5 build 20100303 released

by kad1r 4. March 2010 12:45

New Features:
Added new option to export results to HTTP Fuzzer
Test for XML External Entity Injection
Test for XML Injection
Improved directory traversal vulnerability check
Improved Cross-site Scripting (XSS) vulnerability checks
Fixed: access violation when the application exists
Fixed: access violation when protocol was terminated in NotifyCaller function in LSR
Fixed: AbortVulnXML OnFirstAlert was not imported from settings
Fixed: Form values were not encoded correctly when submitted from JavaScript (CSA engine)

How to upgrade: On starting up Acunetix WVS, a pop up window will automatically notify you that a more recent build is available for download. To download the latest build, navigate to General > Program Updates node in the Tools explorer, and click on Download and Install new build.

Tags: , , , ,

Released | Security

My new 7200rpm SEAGATE ST9250410AS harddrive

by kad1r 2. March 2010 12:54

Hello. I bought a new hdd for my notebook. As you know notebooks generally have 5400 rpm hdd. If you are using sql server, visual studio ... etc you need speed. So I need much more speed and then I decided to buy new harddrive. I reasearch too much and after I decided to buy http://www.sanalmarketim.com/urun/aedf3d96413dbfa582f7e37cd13d3171/SEAGATE-ST9250410AS-250GB-7200RPM-16MB-SATA-2.5#34;-HDD.

It's Seagate 7200 Sata 16Mb cache harddrive. Speed is very well. So quiet and it also has G-Force Protection. 

Tags: ,

Live

Get Alexa Ranks With Class in ASP.Net

by kad1r 1. March 2010 10:58
public class AlexaData
{
public DataTable pro(string domain)
{
DataTable tablo = new DataTable();
string url = "http://alexa.com/xml/dad?url=" + domain;
XmlDocument doc = new XmlDocument();
doc.Load(url);
string owner = "", popularity = "";
DataRow r = tablo.NewRow();
if (doc.SelectSingleNode("//OWNER") != null)
{
owner = doc.SelectSingleNode("//OWNER").Attributes[0].InnerText;
tablo.Columns.Add("OWNER");
r[0] = owner;
}
if (doc.SelectSingleNode("//POPULARITY") != null)
{
popularity = doc.SelectSingleNode("//POPULARITY").Attributes[1].InnerText;
tablo.Columns.Add("POPULARITY");
r[1] = popularity;
}
tablo.Rows.Add(r);
return tablo;
}
}

Google Analytics API using with ASP.Net

by kad1r 27. February 2010 13:12
Google Analytics API integration with Asp.net application
string userName = ""; // Enter your username
string passWord = ""; // Enter your password
const string dataFeedUrl = "https://www.google.com/analytics/feeds/data";
AccountQuery query = new AccountQuery();
AnalyticsService service = new AnalyticsService("AnalyticsSampleApp");
if (!string.IsNullOrEmpty(userName))
{
service.setUserCredentials(userName, passWord);
}
string str = "";
AccountFeed accountFeed = service.Query(query);
foreach (AccountEntry entry in accountFeed.Entries)
{
str = entry.ProfileId.Value;
}

 

DataQuery query1 = new DataQuery(dataFeedUrl);
query1.Ids = str;
query1.Metrics = "ga:visits";
query1.Sort = "ga:visits";
query1.GAStartDate = DateTime.Now.AddMonths(-1).AddDays(-2).ToString("yyyy-MM-dd");
query1.GAEndDate = DateTime.Now.AddDays(-3).ToString("yyyy-MM-dd");
query1.StartIndex = 1;
DataFeed dataFeedVisits = service.Query(query1);
foreach (DataEntry entry in dataFeedVisits.Entries)
{
string st = entry.Title.Text;
string ss = entry.Metrics[0].Value;
_intVisists = Int32.Parse(ss);
Response.Write("
");
Response.Write("Total Visits : " + ss);
Response.Write("
");
}

Ubuntu sudo vulnerabilities

by kad1r 27. February 2010 13:07
Affected systems:
Ubuntu 6.06 LTS
Ubuntu 8.04 LTS
Ubuntu 8.10
Ubuntu 9.04
Ubuntu 9.10
It was discovered that sudo did not properly validate the path for the 'sudoedit' pseudo-command. A local attacker could exploit this to execute arbitrary code as root if sudo was configured to allow the attacker to use sudoedit. The sudoedit pseudo-command is not used in the default installation of Ubuntu. (CVE-2010-0426)
It was discovered that sudo did not reset group permissions when the 'runas_default' configuration option was used. A local attacker could exploit this to escalate group privileges if sudo was configured to allow the attacker to run commands under the runas_default account. The runas_default configuration option is not used in the default installation of Ubuntu. This issue affected Ubuntu 8.04 LTS, 8.10 and 9.04. (CVE-2010-0427)



Powered by BlogEngine.NET 1.5.0.7
Keywords: MVC, ASP.Net, Csharp, visual tutorials, SQL, Ubuntu
VisualStudio.Gen.Tr

Widgets

Follow kad1r on Twitter
ÇözümPark

Wordle

kad1r.com - wordle