Update parrot-build.
Former-commit-id: e5cc9a092d
Former-commit-id: 57ffa6957f9edc0735ac97c86594b1b27d4dbde9
1
filesystem/etc/resolv.conf
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
resolvconf/run/resolv.conf
|
12
filesystem/etc/resolvconf/run/resolv.conf
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
# Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
|
||||||
|
# DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
|
||||||
|
nameserver 8.8.8.8
|
||||||
|
nameserver 8.8.4.4
|
||||||
|
# ParrotDNS/OpenNIC
|
||||||
|
nameserver 139.99.96.146
|
||||||
|
nameserver 37.59.40.15
|
||||||
|
nameserver 185.121.177.177
|
||||||
|
|
||||||
|
# Round Robin
|
||||||
|
options rotate
|
||||||
|
|
9
filesystem/etc/skel/Templates/prog/ObjC.m
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
#import <Foundation/Foundation.h>
|
||||||
|
|
||||||
|
int main (int argc, const char * argv[])
|
||||||
|
{
|
||||||
|
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
|
||||||
|
NSLog (@"give me a bottle of rum!");
|
||||||
|
[pool drain];
|
||||||
|
return 0;
|
||||||
|
}
|
17
filesystem/etc/skel/Templates/prog/assembly.asm
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
global _start
|
||||||
|
|
||||||
|
section .text
|
||||||
|
|
||||||
|
_start:
|
||||||
|
mov eax, 0x4
|
||||||
|
mov ebx, 0x1
|
||||||
|
mov ecx, message
|
||||||
|
mov edx, 0xF
|
||||||
|
int 0x80
|
||||||
|
|
||||||
|
mov eax, 0x1
|
||||||
|
mov ebx, 0x0
|
||||||
|
int 0x80
|
||||||
|
|
||||||
|
section .data
|
||||||
|
message: db "give me a bottle of rum!", 0dh, 0ah
|
3
filesystem/etc/skel/Templates/prog/bash-sh.sh
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
echo "give me a bottle of rum!"
|
9
filesystem/etc/skel/Templates/prog/c++.cpp
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
#include <iostream>
|
||||||
|
|
||||||
|
using namespace std;
|
||||||
|
|
||||||
|
main()
|
||||||
|
{
|
||||||
|
cout << "give me a bottle of rum!" << endl;
|
||||||
|
return 0;
|
||||||
|
}
|
7
filesystem/etc/skel/Templates/prog/c.c
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
|
int main(int argc, char **argv)
|
||||||
|
{
|
||||||
|
printf("give me a bottle of rum!\n");
|
||||||
|
return 0;
|
||||||
|
}
|
4
filesystem/etc/skel/Templates/prog/falcon.fal
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
#!/usr/bin/env falcon
|
||||||
|
|
||||||
|
> "give me a bottle of rum!"
|
||||||
|
|
4
filesystem/etc/skel/Templates/prog/header.h
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
#ifndef _HEADER_FILE_H_
|
||||||
|
#define _HEADER_FILE_H_
|
||||||
|
|
||||||
|
#endif //_HEADER_FILE_H_
|
7
filesystem/etc/skel/Templates/prog/java.java
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
public class HelloWorld {
|
||||||
|
|
||||||
|
public static void main(String[] args) {
|
||||||
|
System.out.println("give me a bottle of rum!");
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
3
filesystem/etc/skel/Templates/prog/perl.pl
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
#!/usr/bin/perl
|
||||||
|
|
||||||
|
print("give me a bottle of rum!");
|
3
filesystem/etc/skel/Templates/prog/perlModule.pm
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
package foobar;
|
||||||
|
|
||||||
|
1;
|
3
filesystem/etc/skel/Templates/prog/python.py
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
#!/usr/bin/python
|
||||||
|
|
||||||
|
print "give me a bottle of rum!"
|
3
filesystem/etc/skel/Templates/prog/ruby.rb
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
#!/usr/bin/ruby
|
||||||
|
|
||||||
|
say "give me a bottle of rum!"
|
22
filesystem/etc/skel/Templates/prog/shellcode.s
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
char code[] =
|
||||||
|
|
||||||
|
"\xe9\x1e\x00\x00\x00" // jmp 8048083 <MESSAGE>
|
||||||
|
"\xb8\x04\x00\x00\x00" // mov $0x4,%eax
|
||||||
|
"\xbb\x01\x00\x00\x00" // mov $0x1,%ebx
|
||||||
|
"\x59" // pop %ecx
|
||||||
|
"\xba\x0f\x00\x00\x00" // mov $0xf,%edx
|
||||||
|
"\xcd\x80" // int $0x80
|
||||||
|
"\xb8\x01\x00\x00\x00" // mov $0x1,%eax
|
||||||
|
"\xbb\x00\x00\x00\x00" // mov $0x0,%ebx
|
||||||
|
"\xcd\x80" // int $0x80
|
||||||
|
"\xe8\xdd\xff\xff\xff" // call 8048065 <GOBACK>
|
||||||
|
"give me a bottle of rum!\r\n"; // OR "\x48\x65\x6c\x6c\x6f\x2c\x20\x57"
|
||||||
|
// "\x6f\x72\x6c\x64\x21\x0d\x0a"
|
||||||
|
|
||||||
|
|
||||||
|
int main(int argc, char **argv)
|
||||||
|
{
|
||||||
|
(*(void(*)())code)();
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
BIN
filesystem/etc/skel/Templates/text/calc.ods
Normal file
BIN
filesystem/etc/skel/Templates/text/impress.odp
Normal file
BIN
filesystem/etc/skel/Templates/text/writer.odt
Normal file
5
filesystem/etc/skel/Templates/web/css.css
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
.class
|
||||||
|
{
|
||||||
|
display: block;
|
||||||
|
color: #00ff00;
|
||||||
|
}
|
9
filesystem/etc/skel/Templates/web/html.html
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>foobar</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div>foobar</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
3
filesystem/etc/skel/Templates/web/php.php
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
?>
|
1
filesystem/etc/skel/Templates/web/xml.xml
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<tag></tag>
|
4
filesystem/root/Desktop/.gitignore
vendored
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
# Ignore everything in this directory
|
||||||
|
*
|
||||||
|
# Except this file
|
||||||
|
!.gitignore
|
4
filesystem/root/Documents/.gitignore
vendored
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
# Ignore everything in this directory
|
||||||
|
*
|
||||||
|
# Except this file
|
||||||
|
!.gitignore
|
4
filesystem/root/Downloads/.gitignore
vendored
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
# Ignore everything in this directory
|
||||||
|
*
|
||||||
|
# Except this file
|
||||||
|
!.gitignore
|
4
filesystem/root/Videos/.gitignore
vendored
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
# Ignore everything in this directory
|
||||||
|
*
|
||||||
|
# Except this file
|
||||||
|
!.gitignore
|
4
filesystem/root/bin/.gitignore
vendored
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
# Ignore everything in this directory
|
||||||
|
*
|
||||||
|
# Except this file
|
||||||
|
!.gitignore
|
4
filesystem/root/payloads/.gitignore
vendored
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
# Ignore everything in this directory
|
||||||
|
*
|
||||||
|
# Except this file
|
||||||
|
!.gitignore
|
After Width: | Height: | Size: 40 KiB |
Before Width: | Height: | Size: 39 KiB After Width: | Height: | Size: 40 KiB |
Before Width: | Height: | Size: 39 KiB After Width: | Height: | Size: 40 KiB |
After Width: | Height: | Size: 64 KiB |
After Width: | Height: | Size: 64 KiB |
After Width: | Height: | Size: 64 KiB |
|
@ -17,7 +17,7 @@ ricochet-im
|
||||||
libreoffice
|
libreoffice
|
||||||
keepassxc
|
keepassxc
|
||||||
homebank
|
homebank
|
||||||
vym
|
qownnotes
|
||||||
planner
|
planner
|
||||||
rhythmbox
|
rhythmbox
|
||||||
shotwell
|
shotwell
|
||||||
|
|
|
@ -11,9 +11,7 @@ mpv
|
||||||
telnet
|
telnet
|
||||||
zeal
|
zeal
|
||||||
keepassxc
|
keepassxc
|
||||||
homebank
|
qownnotes
|
||||||
vym
|
|
||||||
planner
|
|
||||||
libreoffice
|
libreoffice
|
||||||
qbittorrent
|
qbittorrent
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,7 @@ parrot-core
|
||||||
parrot-interface
|
parrot-interface
|
||||||
parrot-mini
|
parrot-mini
|
||||||
parrot-drivers
|
parrot-drivers
|
||||||
|
parrot-tools-full
|
||||||
|
|
||||||
## other packages
|
## other packages
|
||||||
vinagre
|
vinagre
|
||||||
|
|
|
@ -11,9 +11,7 @@ mpv
|
||||||
telnet
|
telnet
|
||||||
zeal
|
zeal
|
||||||
keepassxc
|
keepassxc
|
||||||
homebank
|
qownnotes
|
||||||
vym
|
|
||||||
planner
|
|
||||||
libreoffice
|
libreoffice
|
||||||
qbittorrent
|
qbittorrent
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,7 @@ parrot-core
|
||||||
parrot-interface
|
parrot-interface
|
||||||
parrot-mini
|
parrot-mini
|
||||||
parrot-drivers
|
parrot-drivers
|
||||||
|
parrot-tools-full
|
||||||
|
|
||||||
## other packages
|
## other packages
|
||||||
vinagre
|
vinagre
|
||||||
|
|