Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Galrahn

  1. Galrahn

    Resolving errors!

    Have you tried creating a simple page like "test" and put a .aspx extention to it? This will help determine whether it is a .NET issue or an IIS issue. If the test .aspx file works, then your server is fine and the problem is probably your code, if the file doesn't run it could be...
  2. Galrahn

    vb script for dr watson problems

    Actually it is even worse VB using 3rd party poorly written C++ isapi.
  3. Galrahn

    vb script for dr watson problems

    Hi, I have an application that runs at a remote site on an NT 4.0 server. The application runs in process in IIS, and every once in awile the IIS process has a dr watson error due to an exception error within the application. The application is due for retirement later this year and thus will...
  4. Galrahn

    This is my problem. We have LD

    This is my problem. We have LDAP available over SSL (port 636) on one of our Netware 6 servers. I have used the Active Directory Browser tool in the past to communicate and get the LDAP properties from our LDAP directory in the past. I recently installed Visual Studio.NET to my workstation...
  5. Galrahn

    Need programmers Input

    I have a project manager telling me to disable MSDTC on a WIndows 2000 Server. The application they are building is 3-tier...: fat workstation client <-> server <-> database. Developed with VB6. The client and server code runs through IIS through a propriatary data access layer that is...
  6. Galrahn

    How to get COM+ Appliacation DLLHOST PID?

    You can try process explorer from www.sysinternals.com They have a tool that allows you to evaluate the handles of a process, and tells you which dlls are loaded. By seeing which dlls are loaded you should be able to verify which PID is which application. Enjoy! Galrahn
  7. Galrahn

    IIS Server not asking for Authentication.

    The problem is most likely the browser config on the client that has trouble accessing the site. CHeck your zone configuration in IE for Logon Authentication and make sure you have it configured to not automatically pass-thru with current userID and password, instead requesting a prompt. Should...
  8. Galrahn

    Integrated Auth and Anon issue

    Within IE, try go to the Tools | Internet Options. Then select the Security Tab. Highlight Trusted Sites, and add your website to the zone, disable https requirement if necessary. Then choose the 'custom level...' option, and verify that User Authentication is set to &quot;Automatic Logon...
  9. Galrahn

    Integrated Auth and Anon issue

    With anonymous inside on a domain, it is still possible to grab username by using the strNTUser = RTrim(Request.ServerVariables(&quot;LOGON_USER&quot;)) iPos = Len(strNTUser) - InStr(1, strNTUser,&quot;\&quot;,1) strNTUser = Right(strNTUser, iPos) variables in your ASP, but client browsers...
  10. Galrahn

    IIS Hack Attempt ?

    A 200 reply in your log indicates that your server is vulnerable to the UNICODE directory transversal vulnerablity for IIS. This is a serious vulnerablity and if you are just realizing you are vulnerable, your web server has most likely already been exploited. The vulnerablity works by...
  11. Galrahn

    cmd.exe /c+dir

    Actually code red is different, code red exploited problems with index server. code red would like like: GET http://<ipaddress>/default.ida?NNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN NNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN...
  12. Galrahn

    cmd.exe /c+dir

    This is a Unicode File Transversal technique used to expoit IIS webservers that have not been properly patched. This technique was used by NIMDA and and other virus style web based scripts. A patched system will reply with 404 or 500 errors in the logs, a response of 200 means you are...
  13. Galrahn

    *.msc's in web browser

    Create a custom MMC and publish it with Terminal Services. It is the simplest solution I know of if you want to run it off a server and not from a client. The only way I know of to effectively manage MMC capability within a web site is to use ADSI and build it from scratch (or completely...
  14. Galrahn

    &quot;Hyper-threading&quot; and Windows 2000

    JackyZhang is right, but Microsoft also has an opinion. &quot;All versions of the Windows 2000 operating system are fully compliant with HT and should run without error on HT-enabled systems. However, neither Windows 2000 nor any of its service packs support the identification of HT processors...
  15. Galrahn

    &quot;Hyper-threading&quot; and Windows 2000

    I would think you do need to install a multiprocessor HAL in order for it to work. We recently purchased the new DELL 6650s with 4 P4 Xeons, and chose to use Advanced Server so we can take advantage of the hyperthreading (get the 8 processors). Afterall, natice support is not there in 2K, and to...

Part and Inventory Search

Back
Top