1
mirror of https://github.com/rapid7/metasploit-payloads synced 2025-03-06 09:13:02 +01:00

Land #16 : update build status link for windows meterpreter

This commit is contained in:
OJ 2015-07-25 22:32:24 +10:00
commit e99818c768
No known key found for this signature in database
GPG Key ID: D5DC61FB93260597
4 changed files with 15 additions and 10 deletions

10
.travis.yml Normal file
View File

@ -0,0 +1,10 @@
language: c
script: cd c/meterpreter && make
notifications:
irc: "irc.freenode.org#msfnotify"
before_install:
- sudo apt-get update
- sudo apt-get install jam
- sudo apt-get install gcc-multilib

View File

@ -1,7 +1,7 @@
#### Build Status
* `master` Windows x86 and x64: ![Windows Meterpreter Build Status][build_icon_windows]
* `master` POSIX x86: ![POSIX Meterpreter Build Status][build_icon_posix]
* `master` Windows x86 and x64: [![Windows Meterpreter Build Status](https://ci.metasploit.com/buildStatus/icon?job=metasploit-payloads-win)](https://ci.metasploit.com/job/metasploit-payloads-win/)
* `master` Linux x86: [![Linux Meterpreter Build Status](https://travis-ci.org/rapid7/metasploit-payloads.svg)](https://travis-ci.org/rapid7/metasploit-payloads)
metasploit-payloads >
=====================

View File

@ -1,11 +1,6 @@
Current `master` branch: ![Meterpreter Build Status][build_icon]
meterpreter >
Native C meterpreter >
=============
This is the new repository for the Meterpreter [source], which was originally in the
[Metasploit Framework][framework] source.
Building - Windows
==================

View File

@ -38,10 +38,10 @@ public class check_root_android implements Command {
|| canExecuteCommand("which su");
}
private static boolean fileInstalled(String packageName) {
private static boolean fileInstalled(String fileName) {
boolean installed;
try {
File file = new File("/system/app/" + packageName);
File file = new File(fileName);
installed = file.exists();
} catch (Exception e1){
installed = false;