This file is indexed.

/usr/share/websploit/core/header.py is in websploit 3.0.0-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
64
65
66
67
68
69
70
71
72
73
#!/usr/bin/env python
#
# WebSploit Framework Header module
# Created By 0x0ptim0us (Fardin Allahverdinazhand)
# Email : 0x0ptim0us@Gmail.Com


import random
def main_header():
	header_1 = r"""
	 __          __  _               _       _ _   
	 \ \        / / | |             | |     (_) |  
	  \ \  /\  / /__| |__  ___ _ __ | | ___  _| |_ 
	   \ \/  \/ / _ \ '_ \/ __| '_ \| |/ _ \| | __|
	    \  /\  /  __/ |_) \__ \ |_) | | (_) | | |_ 
	     \/  \/ \___|_.__/|___/ .__/|_|\___/|_|\__|
	                          | |                  
	                          |_|                  """

	header_2 = r"""
 __      __          __                      ___               __
/\ \  __/\ \        /\ \                    /\_ \           __/\ \__
\ \ \/\ \ \ \     __\ \ \____    ____  _____\//\ \     ___ /\_\ \ ,_\
 \ \ \ \ \ \ \  /'__`\ \ '__`\  /',__\/\ '__`\\ \ \   / __`\/\ \ \ \/
  \ \ \_/ \_\ \/\  __/\ \ \L\ \/\__, `\ \ \L\ \\_\ \_/\ \L\ \ \ \ \ \_
   \ `\___x___/\ \____\\ \_,__/\/\____/\ \ ,__//\____\ \____/\ \_\ \__\
    '\/__//__/  \/____/ \/___/  \/___/  \ \ \/ \/____/\/___/  \/_/\/__/
                                         \ \_\
                                          \/_/ 	"""	
	header_3 = r"""
	 (  (               )             (             )  
	 )\))(   '   (   ( /(             )\     (   ( /(  
	((_)()\ )   ))\  )\()) (   `  )  ((_) (  )\  )\()) 
	_(())\_)() /((_)((_)\  )\  /(/(   _   )\((_)(_))/  
	\ \((_)/ /(_))  | |(_)((_)((_)_\ | | ((_)(_)| |_   
	 \ \/\/ / / -_) | '_ \(_-<| '_ \)| |/ _ \| ||  _|  
	  \_/\_/  \___| |_.__//__/| .__/ |_|\___/|_| \__|  
	                          |_|           """



	header_4 = r"""
 __    __    ___  ____    _____ ____  _       ___  ____  ______ 
|  |__|  |  /  _]|    \  / ___/|    \| |     /   \|    ||      |
|  |  |  | /  [_ |  o  )(   \_ |  o  ) |    |     ||  | |      |
|  |  |  ||    _]|     | \__  ||   _/| |___ |  O  ||  | |_|  |_|
|  `  '  ||   [_ |  O  | /  \ ||  |  |     ||     ||  |   |  |  
 \      / |     ||     | \    ||  |  |     ||     ||  |   |  |  
  \_/\_/  |_____||_____|  \___||__|  |_____| \___/|____|  |__|  
                                                                """
                                                                
	header_5 = r"""
db   d8b   db d88888b d8888b. .d8888. d8888b. db       .d88b.  d888888b d888888b 
88   I8I   88 88'     88  `8D 88'  YP 88  `8D 88      .8P  Y8.   `88'   `~~88~~' 
88   I8I   88 88ooooo 88oooY' `8bo.   88oodD' 88      88    88    88       88    
Y8   I8I   88 88~~~~~ 88~~~b.   `Y8b. 88~~~   88      88    88    88       88    
`8b d8'8b d8' 88.     88   8D db   8D 88      88booo. `8b  d8'   .88.      88    
 `8b8' `8d8'  Y88888P Y8888P' `8888Y' 88      Y88888P  `Y88P'  Y888888P    YP    """
 
	hdr_num = random.randint(1, 5)
	if hdr_num ==1:
		print header_1
	if hdr_num ==2:
		print header_2
	if hdr_num ==3:
		print header_3
	if hdr_num ==4:
		print header_4
	if hdr_num ==5:
		print header_5