Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
F
FallIntoOblivion
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Pedro Cavaleiro
FallIntoOblivion
Commits
028da0bb
Commit
028da0bb
authored
Dec 04, 2017
by
Pedro Cavaleiro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implemented attempt system
parent
7e6bef7c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
110 additions
and
15 deletions
+110
-15
Helpers.java
FallIntoOblivion/src/fallintooblivion/Helpers.java
+104
-3
functionsDebug.java
FallIntoOblivion/src/fallintooblivion/functionsDebug.java
+6
-12
No files found.
FallIntoOblivion/src/fallintooblivion/Helpers.java
View file @
028da0bb
...
@@ -205,6 +205,77 @@ public class Helpers {
...
@@ -205,6 +205,77 @@ public class Helpers {
public
static
class
Encryptor
{
public
static
class
Encryptor
{
/**
/**
* Obtem as tentativas já efetuadas
* @param file ficheiro
* @return
*/
private
static
int
getAttempts
(
String
file
)
{
Assinatura
signature
=
new
Assinatura
();
String
_file
=
"Fall_Into_Oblivion/Trashed/"
+
file
+
"/"
+
file
;
String
lockFile
=
"Fall_Into_Oblivion/Trashed/"
+
file
+
"/."
+
file
+
".lock"
;
String
sigFile
=
"Fall_Into_Oblivion/Trashed/"
+
file
+
"/.lock.sig"
;
String
pubKeyFile
=
"Fall_Into_Oblivion/Trashed/"
+
file
+
"/.lock.pk"
;
File
fAttempts
=
new
File
(
lockFile
);
File
sFile
=
new
File
(
sigFile
);
File
pkFile
=
new
File
(
pubKeyFile
);
if
((
sFile
.
exists
()
||
pkFile
.
exists
())
&&
!
fAttempts
.
exists
())
{
// the system has been tampered with...
return
-
1
;
}
else
{
try
{
if
(
fAttempts
.
exists
())
{
if
(
signature
.
verificarAssinatura
(
lockFile
,
sigFile
,
pubKeyFile
))
{
byte
[]
hash_1
=
SHA256
.
calculateStringMAC
(
String
.
valueOf
(
1
)
+
_file
).
getBytes
(
"UTF-8"
);
byte
[]
hash_2
=
SHA256
.
calculateStringMAC
(
String
.
valueOf
(
2
)
+
_file
).
getBytes
(
"UTF-8"
);
byte
[]
storedHash
=
Helpers
.
FileHelpers
.
readFile
(
lockFile
);
if
(
Arrays
.
equals
(
hash_1
,
storedHash
))
return
1
;
if
(
Arrays
.
equals
(
hash_2
,
storedHash
))
return
2
;
return
3
;
}
else
{
return
-
1
;
}
}
else
{
return
0
;
}
}
catch
(
Exception
ex
)
{
ex
.
printStackTrace
();
}
}
return
-
1
;
}
/**
* Creates an file called filename.lock that contains the current attempt and the file name
* A digital signature is created to ensure that the lock file is not tempered
* @param file the name of the file that was trying to be unlocked
* @param attempt the nº of the attempt
*/
private
static
void
writeAttempt
(
String
file
,
int
attempt
)
{
Assinatura
fileSigning
=
new
Assinatura
();
String
_file
=
"Fall_Into_Oblivion/Trashed/"
+
file
+
"/"
+
file
;
String
lockFile
=
"Fall_Into_Oblivion/Trashed/"
+
file
+
"/."
+
file
+
".lock"
;
String
sigFile
=
"Fall_Into_Oblivion/Trashed/"
+
file
+
"/.lock.sig"
;
String
pkFile
=
"Fall_Into_Oblivion/Trashed/"
+
file
+
"/.lock.pk"
;
try
{
byte
[]
hash
=
SHA256
.
calculateStringMAC
(
String
.
valueOf
(
attempt
)
+
_file
).
getBytes
(
"UTF-8"
);
Helpers
.
FileHelpers
.
writeFile
(
lockFile
,
""
,
hash
);
fileSigning
.
assinarFicheiro
(
lockFile
,
sigFile
,
pkFile
);
}
catch
(
Exception
ex
)
{
ex
.
printStackTrace
();
}
}
/**
* Encrypta um ficheiro dado um nome do ficheiro e caminho e o cypher a ser usado
* Encrypta um ficheiro dado um nome do ficheiro e caminho e o cypher a ser usado
* @param fileName nome do ficheiro
* @param fileName nome do ficheiro
* @param filePath caminho para o ficheiro
* @param filePath caminho para o ficheiro
...
@@ -258,6 +329,8 @@ public class Helpers {
...
@@ -258,6 +329,8 @@ public class Helpers {
*/
*/
public
static
void
Decrypt
(
String
pin
,
String
file
)
{
public
static
void
Decrypt
(
String
pin
,
String
file
)
{
boolean
deleteFiles
=
true
;
boolean
deleteFiles
=
true
;
boolean
deleteTempFiles
=
false
;
try
{
try
{
// Calcular o HASH usando SHA256 do pin e gerar a chave de 16 bytes
// Calcular o HASH usando SHA256 do pin e gerar a chave de 16 bytes
...
@@ -265,7 +338,6 @@ public class Helpers {
...
@@ -265,7 +338,6 @@ public class Helpers {
pinHASH
=
pinHASH
.
subSequence
(
0
,
16
).
toString
();
pinHASH
=
pinHASH
.
subSequence
(
0
,
16
).
toString
();
// Carregar o ficheiro encriptado para memoria, desencriptar e guardar
// Carregar o ficheiro encriptado para memoria, desencriptar e guardar
// TODO: not all files will be aescbc
File
encFile
=
new
File
(
"Fall_Into_Oblivion/Trashed/"
+
file
+
"/"
+
file
+
".aescbc"
);
File
encFile
=
new
File
(
"Fall_Into_Oblivion/Trashed/"
+
file
+
"/"
+
file
+
".aescbc"
);
// Check if the file is valid
// Check if the file is valid
...
@@ -287,8 +359,33 @@ public class Helpers {
...
@@ -287,8 +359,33 @@ public class Helpers {
System
.
out
.
println
(
"The file was unlocked!\n"
+
System
.
out
.
println
(
"The file was unlocked!\n"
+
"The file is now located in \"Fall_Into_Oblivion/Restored/"
+
file
+
"/\""
);
"The file is now located in \"Fall_Into_Oblivion/Restored/"
+
file
+
"/\""
);
}
catch
(
Exception
ex
)
{
}
catch
(
Exception
ex
)
{
int
attempts
=
getAttempts
(
file
);
System
.
out
.
println
(
"The pin "
+
pin
+
" is incorrect"
);
System
.
out
.
println
(
"The pin "
+
pin
+
" is incorrect"
);
deleteFiles
=
false
;
switch
(
attempts
)
{
case
0
:
System
.
out
.
println
(
"You have 2 attempts left"
);
writeAttempt
(
file
,
1
);
deleteFiles
=
false
;
break
;
case
1
:
System
.
out
.
println
(
"You have 1 attempt left"
);
writeAttempt
(
file
,
2
);
deleteFiles
=
false
;
break
;
case
2
:
System
.
out
.
println
(
"This file is no longer recoverable"
);
writeAttempt
(
file
,
3
);
deleteTempFiles
=
true
;
break
;
default
:
System
.
out
.
println
(
"The system was tempered. File deleted."
);
deleteTempFiles
=
true
;
break
;
}
}
}
Helpers
.
FileHelpers
.
writeFile
(
outFile
,
".sig"
,
Helpers
.
FileHelpers
.
writeFile
(
outFile
,
".sig"
,
...
@@ -297,13 +394,17 @@ public class Helpers {
...
@@ -297,13 +394,17 @@ public class Helpers {
Helpers
.
FileHelpers
.
readFile
(
"Fall_Into_Oblivion/Trashed/"
+
file
+
"/"
+
file
+
".pk"
));
Helpers
.
FileHelpers
.
readFile
(
"Fall_Into_Oblivion/Trashed/"
+
file
+
"/"
+
file
+
".pk"
));
}
else
{
}
else
{
System
.
out
.
println
(
"CRIT
Y
CAL ERROR: The file is corrupted!\n"
);
System
.
out
.
println
(
"CRIT
I
CAL ERROR: The file is corrupted!\n"
);
}
}
if
(
deleteFiles
)
{
if
(
deleteFiles
)
{
// We do not want corrupted files in the trash, so we delete them
// We do not want corrupted files in the trash, so we delete them
File
dir
=
new
File
(
"Fall_Into_Oblivion/Trashed/"
+
file
+
"/"
);
File
dir
=
new
File
(
"Fall_Into_Oblivion/Trashed/"
+
file
+
"/"
);
Helpers
.
FileHelpers
.
deleteDirectory
(
dir
);
Helpers
.
FileHelpers
.
deleteDirectory
(
dir
);
if
(
deleteTempFiles
)
{
dir
=
new
File
(
"Fall_Into_Oblivion/Restored/"
+
file
+
"/"
);
Helpers
.
FileHelpers
.
deleteDirectory
(
dir
);
}
}
else
{
}
else
{
File
dir
=
new
File
(
"Fall_Into_Oblivion/Restored/"
+
file
+
"/"
);
File
dir
=
new
File
(
"Fall_Into_Oblivion/Restored/"
+
file
+
"/"
);
Helpers
.
FileHelpers
.
deleteDirectory
(
dir
);
Helpers
.
FileHelpers
.
deleteDirectory
(
dir
);
...
...
FallIntoOblivion/src/fallintooblivion/functionsDebug.java
View file @
028da0bb
...
@@ -9,6 +9,9 @@ import java.io.File;
...
@@ -9,6 +9,9 @@ import java.io.File;
import
java.io.FileNotFoundException
;
import
java.io.FileNotFoundException
;
import
java.io.IOException
;
import
java.io.IOException
;
import
static
java
.
lang
.
System
.
in
;
import
static
java
.
lang
.
System
.
in
;
import
java.io.RandomAccessFile
;
import
java.nio.channels.FileChannel
;
import
java.security.InvalidKeyException
;
import
java.security.InvalidKeyException
;
import
java.security.NoSuchAlgorithmException
;
import
java.security.NoSuchAlgorithmException
;
import
java.security.SignatureException
;
import
java.security.SignatureException
;
...
@@ -17,20 +20,11 @@ import java.util.Arrays;
...
@@ -17,20 +20,11 @@ import java.util.Arrays;
public
class
functionsDebug
{
public
class
functionsDebug
{
public
static
void
main
(
String
[]
args
)
{
public
static
void
main
(
String
[]
args
)
{
String
inFile
=
"Fall_Into_Oblivion/Trashed/Sem nome.rtf/Sem nome.rtf.aescbc"
;
String
inFile
=
"Fall_Into_Oblivion/Trashed/SemNome.rtf.aescbc.lock"
;
String
hashFile
=
"Fall_Into_Oblivion/Trashed/Sem nome.rtf/Sem nome.rtf.aescbc.hash"
;
File
iFile
=
new
File
(
inFile
);
File
iFile
=
new
File
(
inFile
);
System
.
out
.
println
(
"IN FILE: "
+
iFile
.
exists
());
File
hFile
=
new
File
(
hashFile
);
System
.
out
.
println
(
"HASH FILE: "
+
hFile
.
exists
());
try
{
try
{
byte
[]
checker
=
SHA256
.
calculateMACBytes
(
inFile
);
FileChannel
channel
=
new
RandomAccessFile
(
inFile
,
"rw"
).
getChannel
();
byte
[]
hashBytes
=
Helpers
.
FileHelpers
.
readFile
(
hashFile
);
channel
.
lock
();
//Helpers.FileHelpers.writeFile(hashFile + "2","", checker);
if
(
Arrays
.
equals
(
checker
,
hashBytes
))
System
.
out
.
println
(
"The file is valid"
);
else
System
.
out
.
println
(
"The file is not valid"
);
}
catch
(
Exception
ex
)
{
}
catch
(
Exception
ex
)
{
System
.
out
.
println
(
ex
.
getMessage
());
System
.
out
.
println
(
ex
.
getMessage
());
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment