-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (61 loc) · 2.09 KB
/
index.html
File metadata and controls
63 lines (61 loc) · 2.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8"/>
<meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"/>
<!-- Skeleton CSS -->
<link crossorigin="anonymous" href="https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.min.css" rel="stylesheet"/>
<!-- Font -->
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap" rel="stylesheet" type="text/css"/>
<!-- Favicon -->
<link href="https://gist.githubusercontent.com/astariul/c09af596e802e945d3032774e10e1047/raw/f693a2e2b65966494da082887bc4be2917f615e4/random_icon.svg" rel="icon"/>
<!-- Custom Styles -->
<link href="static/index_styles.css" rel="stylesheet"/>
<!-- JQuery -->
<script src="https://code.jquery.com/jquery-latest.min.js">
</script>
<!-- Our JS -->
<script src="static/pypi_checker.js" type="text/javascript">
</script>
<title>
Pypi - Gof2BountyBot
</title>
</head>
<body>
<div class="container">
<section class="header">
<img class="value-img" src="https://gist.githubusercontent.com/astariul/c09af596e802e945d3032774e10e1047/raw/f693a2e2b65966494da082887bc4be2917f615e4/random_icon.svg" width="150"/>
<br/>
<br/>
<h2 class="title">
Gof2BountyBot internal PyPi
</h2>
</section>
<br/>
<p>
Welcome to the private Python package index of Gof2BountyBot!
<br/>
You can install packages with:
<pre><code>pip install <package_name> --extra-index-url https://gof2bountybot.github.io/BountyBot-PyPi/</code></pre>
</p>
<hr/>
<h6 class="text-header">
Packages
</h6>
</div>
<script>
$(document).ready(function(){
for (let lnk of document.getElementsByTagName('a')) {
var content = lnk.textContent.trim().replace(/\s\s+/g, ' ').split(" ");
var pkg_name = content[0];
var pkg_vers = content[1];
function mark_red() {
lnk.classList.add("redalert");
}
check_supply_chain_attack(pkg_name, pkg_vers, mark_red);
}
});
</script>
</body>
</html>