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 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
|
/*
*
* Copyright (c) 2014-2015
* name : Francis Banyikwa
* email: mhogomchungu@gmail.com
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <QApplication>
#include "../mainwindow.h"
#include <QProcess>
#include <QByteArray>
#include <QString>
#include <QDebug>
#include <QObject>
#include <QFile>
#include <QDir>
#include <QFile>
#include <sys/types.h>
#include <unistd.h>
#include "../plugins.h"
int main( int argc,char * argv[] )
{
QApplication a( argc,argv ) ;
MainWindow w( []( const QVector<QString>& exe,const QString& keyFile,const QString& password ){
/*
* TODO: look into passing the passphrase more securely
*/
QProcess p ;
p.start( exe.first(),{ "--extract","-sf",keyFile,"-xf","-","-p",password } ) ;
p.waitForFinished( -1 ) ;
QByteArray key = p.readAllStandardOutput() ;
p.close() ;
if( key.isEmpty() ){
return key ;
}else{
key = "\n-----BEGIN PGP MESSAGE-----\n\n" + key + "-----END PGP MESSAGE-----\n" ;
QString temp_path = QString( "%1/%2/" ).arg( QDir::homePath(),"/.zuluCrypt/" ) ;
QDir d ;
d.mkpath( temp_path ) ;
temp_path += QString( ".tomb-%1" ).arg( QString::number( getpid() ) ) ;
/*
* temp_path will have something like "/home/ink/.zuluCrypt/.tomb-3452"
* this will be a path to a temporary file we will pass to gpg since gpg expects a keyfile path
* TODO: look into skipping creating a temporary file and do everything in memory
*/
QFile temp_file( temp_path ) ;
temp_file.open( QIODevice::WriteOnly ) ;
temp_file.write( key ) ;
temp_file.close() ;
key = plugins::gpg( QVector<QString>{ exe.at( 1 ) },temp_path,password ) ;
temp_file.setFileName( temp_path ) ;
temp_file.open( QIODevice::WriteOnly ) ;
uchar * m = temp_file.map( 0,temp_file.size() ) ;
if( m ){
memset( m,'\0',temp_file.size() ) ;
temp_file.unmap( m ) ;
}
temp_file.close() ;
temp_file.remove() ;
return key ;
}
} ) ;
w.setToken( argv ) ;
w.setApplicationName( "tomb" ) ;
w.setkeyLabel( QObject::tr( "Enter tomb/steghide Key Below" ) ) ;
w.setkeyFileLabel( QObject::tr( "Enter A Path To A tomb/steghide Keyfile Below" ) ) ;
w.setExe( { "steghide","gpg" } ) ;
w.Show() ;
return a.exec() ;
}
|