5 changed files with 207 additions and 0 deletions
@ -0,0 +1,23 @@ |
|||
package app.services.db; |
|||
|
|||
import app.entities.other.SteamID; |
|||
import app.utils.SteamIDConverter; |
|||
import jakarta.persistence.EntityManager; |
|||
import jakarta.persistence.PersistenceContext; |
|||
import org.springframework.stereotype.Service; |
|||
|
|||
import java.util.List; |
|||
|
|||
@Service |
|||
public class DetectService { |
|||
|
|||
@PersistenceContext |
|||
EntityManager entityManager; |
|||
|
|||
public List<SteamID> getAccountsPerSteamID(SteamID steamID) { |
|||
return entityManager.createNativeQuery("select `steam_id` FROM all_users_con_2 WHERE `connect_ip` in (SELECT `connect_ip` FROM `all_users_con_2` WHERE `steam_id` LIKE ?1) GROUP BY `steam_id`") |
|||
.setParameter(1, steamID.steam2) |
|||
.getResultStream().map(SteamIDConverter::getSteamID).toList(); |
|||
} |
|||
//SELECT CONCAT(SUBSTRING_INDEX(connect_ip,'.', 1),'.',SUBSTRING_INDEX(SUBSTRING_INDEX(connect_ip,'.', 2),'.',-1),'.',SUBSTRING_INDEX(SUBSTRING_INDEX(connect_ip,'.', 3),'.',-1),'.','%') FROM `all_users_con_2` WHERE `steam_id` LIKE 'STEAM_0:1:768781968';
|
|||
} |
@ -0,0 +1,31 @@ |
|||
package app.utils; |
|||
|
|||
import org.slf4j.Logger; |
|||
import org.slf4j.LoggerFactory; |
|||
import org.springframework.beans.factory.annotation.Autowired; |
|||
import org.springframework.beans.factory.annotation.Value; |
|||
import org.springframework.stereotype.Component; |
|||
|
|||
@Component |
|||
public class CryptedCookie { |
|||
@Value("${backend.auth.crypto.key}") |
|||
private String key; |
|||
|
|||
@Value("${backend.auth.crypto.iv}") |
|||
private String iv; |
|||
|
|||
private final Logger logger = LoggerFactory.getLogger(CryptedCookie.class); |
|||
|
|||
|
|||
public boolean Validate(String value) { |
|||
return CryptoMethods.decrypt(value, key, iv) != null; |
|||
} |
|||
|
|||
public String ReadCh(String value) { |
|||
return CryptoMethods.decrypt(value, key, iv); |
|||
} |
|||
|
|||
public String Hashed(String value) { |
|||
return CryptoMethods.encrypt(value, key, iv); |
|||
} |
|||
} |
@ -0,0 +1,98 @@ |
|||
package app.utils; |
|||
|
|||
import javax.crypto.Cipher; |
|||
import javax.crypto.KeyGenerator; |
|||
import javax.crypto.SecretKey; |
|||
import javax.crypto.spec.IvParameterSpec; |
|||
import javax.crypto.spec.SecretKeySpec; |
|||
import java.security.NoSuchAlgorithmException; |
|||
import java.security.SecureRandom; |
|||
import java.util.Base64; |
|||
|
|||
public class CryptoMethods { |
|||
|
|||
public static final String algorithm = "AES/CBC/PKCS5Padding"; |
|||
|
|||
public static String generateIv() { |
|||
byte[] iv = new byte[16]; |
|||
new SecureRandom().nextBytes(iv); |
|||
return convertIvToString(new IvParameterSpec(iv)); |
|||
} |
|||
|
|||
public static String generateKey(int n){ |
|||
try { |
|||
KeyGenerator keyGenerator = KeyGenerator.getInstance("AES"); |
|||
keyGenerator.init(n); |
|||
SecretKey key = keyGenerator.generateKey(); |
|||
return convertSecretKeyToString(key); |
|||
} catch (Exception e) { |
|||
e.printStackTrace(); |
|||
return null; |
|||
} |
|||
} |
|||
|
|||
public static String convertSecretKeyToString(SecretKey secretKey) throws NoSuchAlgorithmException { |
|||
byte[] rawData = secretKey.getEncoded(); |
|||
return Base64.getEncoder().encodeToString(rawData); |
|||
} |
|||
|
|||
public static String convertIvToString(IvParameterSpec iv) { |
|||
byte[] rawData = iv.getIV(); |
|||
return Base64.getEncoder().encodeToString(rawData); |
|||
} |
|||
|
|||
public static SecretKey convertStringToSecretKeyto(String encodedKey) { |
|||
byte[] decodedKey = Base64.getDecoder().decode(encodedKey); |
|||
return new SecretKeySpec(decodedKey, 0, decodedKey.length, "AES"); |
|||
} |
|||
|
|||
public static IvParameterSpec convertStringToIv(String iv) { |
|||
byte[] decodedIv = Base64.getDecoder().decode(iv); |
|||
return new IvParameterSpec(decodedIv, 0, decodedIv.length); |
|||
} |
|||
|
|||
public static String encrypt(String input, String key, String iv) { |
|||
return encrypt(algorithm, input, convertStringToSecretKeyto(key), convertStringToIv(iv)); |
|||
} |
|||
|
|||
public static String encrypt(String algorithm, String input, String key, |
|||
String iv) { |
|||
return encrypt(algorithm, input, convertStringToSecretKeyto(key), convertStringToIv(iv)); |
|||
} |
|||
|
|||
public static String encrypt(String algorithm, String input, SecretKey key, |
|||
IvParameterSpec iv) { |
|||
try { |
|||
Cipher cipher = Cipher.getInstance(algorithm); |
|||
cipher.init(Cipher.ENCRYPT_MODE, key, iv); |
|||
byte[] cipherText = cipher.doFinal(input.getBytes()); |
|||
return Base64.getEncoder() |
|||
.encodeToString(cipherText); |
|||
} catch (Exception e) { |
|||
return null; |
|||
} |
|||
} |
|||
|
|||
public static String decrypt(String cipherText, String key, String iv) { |
|||
return decrypt(algorithm, cipherText, convertStringToSecretKeyto(key), convertStringToIv(iv)); |
|||
} |
|||
|
|||
public static String decrypt(String algorithm, String cipherText, String key, |
|||
String iv) { |
|||
return decrypt(algorithm, cipherText, convertStringToSecretKeyto(key), convertStringToIv(iv)); |
|||
} |
|||
|
|||
public static String decrypt(String algorithm, String cipherText, SecretKey key, |
|||
IvParameterSpec iv) { |
|||
try { |
|||
Cipher cipher = Cipher.getInstance(algorithm); |
|||
cipher.init(Cipher.DECRYPT_MODE, key, iv); |
|||
byte[] plainText = cipher.doFinal(Base64.getDecoder() |
|||
.decode(cipherText)); |
|||
return new String(plainText); |
|||
} catch (Exception e) { |
|||
return null; |
|||
} |
|||
} |
|||
|
|||
} |
@ -0,0 +1,51 @@ |
|||
package app.utils; |
|||
|
|||
import org.junit.Test; |
|||
|
|||
public class CryptoTest { |
|||
final String input = "super secret string"; |
|||
|
|||
final String global_key = "dquvH4zht89h/ivv9CSS3g=="; |
|||
final String global_iv = "+ORfU8i3xRxP0kYEejQmtw=="; |
|||
final String global_ch = "GoeHW2BKvZyvl3Fu1/6K+ftH+hRK2Nuqk+0zqO0Vt0s="; |
|||
|
|||
@Test |
|||
public void Crypt() throws Exception { |
|||
String key = CryptoMethods.generateKey(128); |
|||
String iv = CryptoMethods.generateIv(); |
|||
System.out.println(key); |
|||
System.out.println(iv); |
|||
String ciptxt = CryptoMethods.encrypt( |
|||
CryptoMethods.algorithm, |
|||
input, |
|||
key, |
|||
iv |
|||
); |
|||
System.out.println(ciptxt); |
|||
} |
|||
|
|||
@Test |
|||
public void DeCrypt() throws Exception { |
|||
String ch_input = global_ch; |
|||
String key = global_key; |
|||
String iv = global_iv; |
|||
System.out.println(key); |
|||
System.out.println(iv); |
|||
String out = CryptoMethods.decrypt(CryptoMethods.algorithm, ch_input, key, iv); |
|||
System.out.println(out); |
|||
} |
|||
|
|||
@Test |
|||
public void DeCryptWithBadCh() throws Exception{ |
|||
String key = global_key; |
|||
String iv = global_iv; |
|||
String ch_input = "GoeHW2BKvZyvl3Fu1/6K+ftH+hRK2Nfuqk+0zqO0Vt0s="; |
|||
String out = CryptoMethods.decrypt(CryptoMethods.algorithm, ch_input, key, iv); |
|||
System.out.println(out); |
|||
} |
|||
|
|||
@Test |
|||
public void CreateKeyAndIv() throws Exception{ |
|||
System.out.println(String.format("Key: %s\nIv: %s", CryptoMethods.generateKey(256), CryptoMethods.generateIv())); |
|||
} |
|||
} |
Loading…
Reference in new issue