-
Recent Posts
Recent Comments
Archives
- February 2021
- December 2020
- October 2020
- August 2020
- July 2020
- June 2020
- May 2020
- April 2020
- March 2020
- February 2020
- January 2020
- December 2019
- October 2019
- September 2019
- July 2019
- June 2019
- May 2019
- April 2019
- February 2019
- January 2019
- November 2018
- October 2018
- May 2018
- March 2018
- January 2018
- November 2017
- October 2017
- August 2017
- June 2017
- May 2017
- April 2017
- March 2017
- February 2017
- January 2017
- December 2016
- November 2016
- October 2016
- September 2016
- August 2016
- July 2016
- June 2016
- May 2016
- March 2016
- February 2016
- January 2016
- November 2015
- October 2015
- September 2015
- August 2015
- July 2015
- June 2015
- May 2015
- April 2015
- February 2015
- January 2015
- September 2014
- August 2014
- July 2014
- June 2014
- April 2014
- March 2014
- February 2014
- January 2014
- December 2013
- October 2013
- September 2013
- August 2013
- July 2013
- June 2013
- April 2013
- March 2013
- February 2013
- January 2013
- December 2012
- November 2012
- October 2012
- August 2012
- July 2012
- June 2012
- April 2012
- March 2012
- February 2012
- January 2012
- December 2011
- November 2011
- October 2011
- September 2011
Categories
Meta
Category Archives: Technical
The security.txt Page for Web Servers
We have recently started using a new-to-us web server security scanner that amongst other things will highlight the absence of a file – security.txt – in the root of the web server. And thus this blog entry explaining what it … Continue reading
What Are “Homoglyph” Attacks?
As the phrase has started becoming more widely used, it seems worthwhile to explain just what exactly “homoglyph attacks” are. It is perhaps a bit extreme to call them “attacks” as they are effectively used to deceive … especially in … Continue reading
Imaging PCs for Offline Analysis
This is going to be a technical post with requirements for access rights that most people do not have, so it can be ignored. The intention is to file this information in a place that can be widely seen for … Continue reading
Zoom Desktop Vulnerability for macOS
Update: Apple is now silently pushing out an update to remove the Zoom “hidden feature” so you will be please to know that the geeky removal is no longer necessary. Just make sure you have opted in to all recent … Continue reading
Posted in Active Attacks, Technical
Tagged Zoom
Comments Off on Zoom Desktop Vulnerability for macOS
The Big RDP Vulnerability (CVE-2019-0708)
Microsoft have released a whole bunch of patches to fix security vulnerabilities this Tuesday (which is quite normal of course), but one unusual aspect was the release of a patch for older versions of Windows that do not normally get … Continue reading
Posted in Active Attacks, Technical
Tagged Attacks, CVE-2019-0708, RDP, Windows
Comments Off on The Big RDP Vulnerability (CVE-2019-0708)
Apache: Reducing Information Leaked Through The Headers
Apache by default announces all sorts of information about itself when you make a connection to it :- $ lynx -head http://some-server-fqdn/ HTTP/1.1 302 Found Date: Thu, 31 May 2018 12:18:22 GMT Server: Apache/2.2.15 (CentOS) Location: https://t-oala-idp-01.iso.port.ac.uk/ Connection: close Content-Type: … Continue reading
Posted in Technical
Tagged Apache, Best Practice
Comments Off on Apache: Reducing Information Leaked Through The Headers
Apache: Disabling Directory Indexes
One of the features of Apache that can cause security issues (or at least those who audit security issues may complain about it) is the ability to produce a file listing of a directory if there is no index page … Continue reading
Posted in Technical
Tagged Apache, Best Practice
Comments Off on Apache: Disabling Directory Indexes
Apache: Disable the ETag Header
By default, the Apache web server has an information disclosure vulnerability where the ETag header shows information about the file containing the object in question. This can contain an “i-node” value which in combination with the use of NFS can permit … Continue reading
Apache: Disabling TRACK and TRACE Methods
By default Apache supports a number of HTTP methods in addition to the ones we normally use – GET (to get objects) and PUSH (to push form data although you can send form data with GET too). These additional methods … Continue reading
Posted in Technical
Tagged Apache, Best Practice
Comments Off on Apache: Disabling TRACK and TRACE Methods
Apache: Blocking “Dangerous” Files
There are all sorts of “dangerous” files that can appear within a web server’s document root; some are merely potentially dangerous but some can be genuinely dangerous. For example, if someone uses an editor to change a .php file, it is … Continue reading