forked from AvillaDaniel/AvillaForensics
-
Notifications
You must be signed in to change notification settings - Fork 1
/
FormColetasWhats.cs
183 lines (150 loc) · 5.83 KB
/
FormColetasWhats.cs
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
//Avilla Forensics - Copyright (C) 2023 – Daniel Hubscher Avilla
//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 3 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 <https://www.gnu.org/licenses/>.
using System;
using System.Data.SQLite;
using System.Drawing;
using System.IO;
using System.Windows.Forms;
namespace Avilla_Forensics
{
public partial class FormColetasWhats : Form
{
public FormColetasWhats()
{
InitializeComponent();
}
static SQLiteConnection CreateConnection()
{
SQLiteConnection sqlite_conn;
// Create a new database connection:
sqlite_conn = new SQLiteConnection("Data Source=" + caminho.caminhoDB + ";Version=3;New=True;Compress=True;");
// Open the connection:
try
{
sqlite_conn.Open();
}
catch
{
}
return sqlite_conn;
}
public class caminho //Variável Pública
{
public static string caminhoDB = "";
public static string caminhoIMG = "";
}
private void button1_Click(object sender, EventArgs e)
{
listView1.Items.Clear();
label5.Text = "";
string pathBin = @"bin";
string fullPathBin;
fullPathBin = Path.GetFullPath(pathBin);
SQLiteConnection sqlite_conn;
sqlite_conn = CreateConnection();
SQLiteDataReader sqlite_datareader;
SQLiteCommand sqlite_cmd;
sqlite_cmd = sqlite_conn.CreateCommand();
sqlite_cmd.CommandText = "SELECT * FROM wa_contacts";
sqlite_datareader = sqlite_cmd.ExecuteReader();
string myreaderJID = "";
string myreaderNAME = "";
string myreaderSTATUS = "";
string myreaderNUMBER = "";
int contar = 0;
while (sqlite_datareader.Read())
{
myreaderJID = sqlite_datareader.GetString(1);
try
{
myreaderNAME = sqlite_datareader.GetString(7);
}
catch
{
myreaderNAME = " ";
}
try
{
myreaderNUMBER = sqlite_datareader.GetString(5);
}
catch
{
myreaderNUMBER = " ";
}
try
{
myreaderSTATUS = sqlite_datareader.GetString(3);
}
catch
{
myreaderSTATUS = " ";
}
try
{
imageList1.Images.Add(Image.FromFile(caminho.caminhoIMG + "\\" + myreaderJID + ".j"));
}
catch
{
imageList1.Images.Add(Image.FromFile(fullPathBin + "\\erro2.png"));
}
listView1.Items.Add(myreaderJID + " | " + myreaderNAME + " | " + myreaderNUMBER + " | " + myreaderSTATUS, contar);
contar++;
}
sqlite_conn.Close();
}
private void button10_Click(object sender, EventArgs e)
{
//define as propriedades do controle
//OpenFileDialog
this.ofd2.Multiselect = true;
this.ofd2.Title = "Select file";
ofd2.InitialDirectory = @"C:\";
ofd2.Filter = "Files (*.db)|*.db";
ofd2.CheckFileExists = true;
ofd2.CheckPathExists = true;
ofd2.FilterIndex = 2;
ofd2.RestoreDirectory = true;
ofd2.ReadOnlyChecked = true;
ofd2.ShowReadOnly = true;
DialogResult drIPED = this.ofd2.ShowDialog();
if (drIPED == System.Windows.Forms.DialogResult.OK)
{
textBox3.Text = ofd2.FileName;
caminho.caminhoDB = ofd2.FileName;
button1.Enabled = true;
}
}
private void listView1_SelectedIndexChanged(object sender, EventArgs e)
{
//webBrowser1.Navigate(caminho.caminhoIMG + "\\" + listBoxLINK.Text + ".j");
label5.Visible = true;
label5.Text = listView1.Items[listView1.FocusedItem.Index].Text;
}
private void button2_Click(object sender, EventArgs e)
{
FolderBrowserDialog backupfolderIPEDArquivo = new FolderBrowserDialog();
backupfolderIPEDArquivo.Description = "Choose source folder";
if (backupfolderIPEDArquivo.ShowDialog() == DialogResult.OK)
{
textBox1.Text = backupfolderIPEDArquivo.SelectedPath;
caminho.caminhoIMG = backupfolderIPEDArquivo.SelectedPath;
button10.Enabled = true;
}
}
private void panel1_Paint(object sender, PaintEventArgs e)
{
}
private void FormColetasWhats_Load(object sender, EventArgs e)
{
}
}
}