Add test for Slashdot + fix style
[gofetch.git] / test / expected / SLASHDOT / 0102639752.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta http-equiv='content-type' content='text/html; charset=utf-8'>
5 <meta name='viewport' content='width=device-width, initial-scale=1.0'>
6 <style type='text/css'>
7 body { margin: 1em 15%; }
8 </style>
9 </head>
10 <body>
11 <div class='story'>
12 <h1>400,000 Websites Vulnerable Through Exposed .git Directories (scmagazine.com)</h1>
13 <div class='details'>(Thursday September 06, 2018 @11:30PM (msmash)
14 from the security-woes dept.)</div>
15 <br/>
16 <ul>
17 <li>News link: <a href='https://tech.slashdot.org/story/18/09/06/1954253/400000-websites-vulnerable-through-exposed-git-directories'>https://tech.slashdot.org/story/18/09/06/1954253/400000-websites-vulnerable-through-exposed-git-directories</a></li>
18 <li>Source link: <a href='https://www.scmagazine.com/home/news/400000-websites-vulnerable-through-exposed-git-directories/'>https://www.scmagazine.com/home/news/400000-websites-vulnerable-through-exposed-git-directories/</a></li>
19 </ul>
20 <br/>
21 <div class='content' style='text-align: justify'>
22 Open .git directories are a bigger cybersecurity problem than many might imagine, at least according to a Czech security researcher who discovered almost 400,000 web pages with an open .git directory possibly exposing a wide variety of data. From a report: Vladimir Smitka began his .git directory odyssey in July when he began looking at Czech websites to find how many were improperly configured and allow access to their .git folders within the file versions repository. Open .git directories are a particularly dangerous issue, he said, because they can contain a great deal of sensitive information. &quot;Information about the website&#x27;s structure, and sometimes you can get very sensitive data such as database passwords, API keys, development IDE settings, and so on. However, this data shouldn&#x27;t be stored in the repository, but in previous scans of various security issues, I have found many developers that do not follow these best practices,&quot; Smitka wrote. Smitka queried 230 million websites to discover the 390,000 allowing access to their .git directories. The vast majority of the websites with open directories had a .com TLD with .net, .de, .org and uk comprising most of the others.
23 </div>
24 <hr/>
25 <div class='comment' style='display: block; margin-left: 80px'>
26 <h2></h2>
27 <div class='by' style='font-style: italic;'></div>
28 <div class='comment_content'></div>
29 <div class='comment' style='display: block; margin-left: 80px'>
30 <h2>Re: (Score:2, Informative)</h2>
31 <div class='by' style='font-style: italic;'>by MidSpeck ( 1516577 )</div>
32 <div class='comment_content'><p></p><p>^/.*/\.git/</p><p>Protect git repositories in all subdirectories as well.</p></div>
33 </div>
34 <div class='comment' style='display: block; margin-left: 80px'>
35 <h2>Re: (Score:2)</h2>
36 <div class='by' style='font-style: italic;'>by jrumney ( 197329 )</div>
37 <div class='comment_content'><p></p><p>Why stop there? Are there any dot files/directories that need to be served over HTTP?</p></div>
38 </div>
39 <div class='comment' style='display: block; margin-left: 80px'>
40 <h2>Re: .htaccess (Score:3)</h2>
41 <div class='by' style='font-style: italic;'>by spongman ( 182339 )</div>
42 <div class='comment_content'><p></p><p>Why doesn't Apache block all '.'-prefixed directories by default?</p></div>
43 </div>
44 </div>
45 <div class='comment' style='display: block; margin-left: 80px'>
46 <h2></h2>
47 <div class='by' style='font-style: italic;'></div>
48 <div class='comment_content'></div>
49 <div class='comment' style='display: block; margin-left: 80px'>
50 <h2>Re:https://slashdot.org/.git (Score:4, Informative)</h2>
51 <div class='by' style='font-style: italic;'>by ls671 ( 1122017 )</div>
52 <div class='comment_content'><p></p><p>Slashdot is still using CVS try [1]https://slashdot.org/CVS/ [slashdot.org]</p><p>you will see, it works! :)</p><p></p><p></p><p></p><p></p><p>[1] https://slashdot.org/CVS/</p></div>
53 </div>
54 </div>
55 <div class='comment' style='display: block; margin-left: 80px'>
56 <h2>Your central git repo ... (Score:1)</h2>
57 <div class='by' style='font-style: italic;'>by Qbertino ( 265505 )</div>
58 <div class='comment_content'><p></p><p>... belongs behind ssh or, at least, behind http access and SSL.</p><p>If I catch you doing otherwise for anything other than FOSS software I'll smack you. Hard.</p></div>
59 <div class='comment' style='display: block; margin-left: 80px'>
60 <h2>Re:Your central git repo ... (Score:4, Informative)</h2>
61 <div class='by' style='font-style: italic;'>by tlhIngan ( 30335 )</div>
62 <div class='comment_content'><p></p><p>> ... belongs behind ssh or, at least, behind http access and SSL.</p><p>> If I catch you doing otherwise for anything other than FOSS software I'll smack you. Hard.</p><p>And it probably is. The thing is, the website owners are using git to version control and deploy their website (not a bad idea). So they develop their web site, push it to the central git repo, and whenever they need to go live, they just do a "git pull" on the webserver and it'll pull down the latest version of the website.</p><p>Problem is, they forget about the hidden .git directory git makes that stores all sorts of useful information and with a little persistence, allow you access to the raw source code since you can access the individual git objects. (Or maybe even clone it using git).</p></div>
63 <div class='comment' style='display: block; margin-left: 80px'>
64 <h2>Re: (Score:2)</h2>
65 <div class='by' style='font-style: italic;'>by jrumney ( 197329 )</div>
66 <div class='comment_content'><p></p><p>I do this, it is very convenient for deploying updates to the site. But I always put the web interface into a subdirectory, and only configure the web server to see that so the .git directory is not visible over HTTP. And dotfiles and directories are blocked in the webserver config for extra protection against accidental inclusion of invisible files.</p></div>
67 </div>
68 </div>
69 </div>
70 <div class='comment' style='display: block; margin-left: 80px'>
71 <h2>reheating yesterday's food (Score:3)</h2>
72 <div class='by' style='font-style: italic;'>by Tsolias ( 2813011 )</div>
73 <div class='comment_content'><p></p><p>just an article from 2015 [1]https://en.internetwache.org/d... [internetwache.org]</p><p>I can give you also next year's article about .file vulnerabilities. (spoiler alert) [2]https://en.internetwache.org/s... [internetwache.org]</p><p></p><p></p><p></p><p></p><p>[1] https://en.internetwache.org/dont-publicly-expose-git-or-how-we-downloaded-your-websites-sourcecode-an-analysis-of-alexas-1m-28-07-2015/</p><p>[2] https://en.internetwache.org/scanning-the-alexa-top-1m-for-ds-store-files-12-03-2018/</p></div>
74 </div>
75 <div class='comment' style='display: block; margin-left: 80px'>
76 <h2></h2>
77 <div class='by' style='font-style: italic;'></div>
78 <div class='comment_content'></div>
79 <div class='comment' style='display: block; margin-left: 80px'>
80 <h2>KKK (Score:2)</h2>
81 <div class='by' style='font-style: italic;'>by Tsolias ( 2813011 )</div>
82 <div class='comment_content'><p></p><p>> Thats what you get on hiring those bootcamp "graduates"</p><p>Kode w/ Karlie Kloss, like it or not.</p></div>
83 </div>
84 </div>
85 <div class='comment' style='display: block; margin-left: 80px'>
86 <h2>Alternate headline: 99.8% websites are OK (Score:2)</h2>
87 <div class='by' style='font-style: italic;'>by jmichaelg ( 148257 )</div>
88 <div class='comment_content'><p></p><p>230 million websites. 400k poorly configured. 4*10^5/2.3*10^8 is less than 0.2% of websites surveyed screwed this up.</p><p>400k is a big number but it's good to know most developers aren't that stupid on this issue.</p></div>
89 </div>
90 <div class='comment' style='display: block; margin-left: 80px'>
91 <h2></h2>
92 <div class='by' style='font-style: italic;'></div>
93 <div class='comment_content'></div>
94 <div class='comment' style='display: block; margin-left: 80px'>
95 <h2>Re: yarn dist (Score:2)</h2>
96 <div class='by' style='font-style: italic;'>by TimMD909 ( 260285 )</div>
97 <div class='comment_content'><p></p><p>... Equifax types for free security tests from 3rd parties and press coverage, presumably...</p></div>
98 </div>
99 </div>
100 <div class='comment' style='display: block; margin-left: 80px'>
101 <h2>So? (Score:2)</h2>
102 <div class='by' style='font-style: italic;'>by cshark ( 673578 )</div>
103 <div class='comment_content'><p></p><p>An open git directory will be everything you need to reconstruct the site, more often than not from the same server you're targeting. Scary. Database servers are rarely open. Short of some serious hacking, there isn't a lot you're going to be able to do with this stuff once you've obtained the information you're waving around here.</p><p>Until such time as I see hackers actually logging in with this information and defacing github, I'm going to remain unconvinced of the severity of this one.</p></div>
104 <div class='comment' style='display: block; margin-left: 80px'>
105 <h2>Re: (Score:2)</h2>
106 <div class='by' style='font-style: italic;'>by OrangeTide ( 124937 )</div>
107 <div class='comment_content'><p></p><p>My website's .git directories are open intentionally. Makes for convenient mirroring and viewing of archives without having to hope and pray wayback machine picked up my obscure website.</p><p>I'm not too worried. It's just data on the filesystem, it's not executing programs. And the data is not supposed to contain any secrets. If it ever does then I better rewrite my git history.</p></div>
108 </div>
109 <div class='comment' style='display: block; margin-left: 80px'>
110 <h2>Re: (Score:1)</h2>
111 <div class='by' style='font-style: italic;'>by Anonymous Coward</div>
112 <div class='comment_content'><p></p><p>The most likely actual security implication is hard coded keys to 3rd party APIs.</p><p>Not that this is an inevitable threat, itâ(TM)s just something I could see being inadvertently exposed and useful without much additional effort.</p></div>
113 <div class='comment' style='display: block; margin-left: 80px'>
114 <h2>Re: (Score:1)</h2>
115 <div class='by' style='font-style: italic;'>by Orrin Bloquy ( 898571 )</div>
116 <div class='comment_content'><p></p><p>> itâ(TM)s</p><p>Clear something up, are you typing curly quotes/apostrophes on purpose or do you have your browser configured to automatically do that.</p></div>
117 </div>
118 </div>
119 <div class='comment' style='display: block; margin-left: 80px'>
120 <h2>Re: (Score:2)</h2>
121 <div class='by' style='font-style: italic;'>by jonwil ( 467024 )</div>
122 <div class='comment_content'><p></p><p>What about if that .git folder (and the website's source code) included private keys for stuff. Or credentials/API keys for 3rd party services. Or credentials for database and other servers.</p></div>
123 </div>
124 </div>
125 </div>
126 </body>