Inside - это Telegram-канал, созданный для всех, кто интересуется темой информационной безопасности. Под ником @in51d3 здесь вы найдете лаконичный и интересный контент, который предоставляется экспертом в данной области. Здесь нет мейнстрима, только актуальная информация и полезные советы о том, как защитить себя в цифровом мире. Присоединяйтесь к каналу Inside, чтобы быть в курсе последних новостей и разработок в области информационной безопасности!
07 Dec, 19:03
28 Nov, 12:02
24 Nov, 09:53
21 Nov, 09:54
15 Nov, 13:57
13 Nov, 08:14
09 Nov, 13:03
09 Nov, 11:44
26 Oct, 20:58
24 Oct, 20:09
23 Oct, 11:04
20 Oct, 13:46
package main
import (
"bufio"
"bytes"
"encoding/json"
"fmt"
"log"
"net/http"
"os"
"strings"
)
func main() {
// Create a scanner to read API keys from the console
scanner := bufio.NewScanner(os.Stdin)
outputFile, err := os.Create("validated_keys.txt")
if err != nil {
log.Fatalf("Не удалось создать файл: %v", err)
}
defer outputFile.Close()
writer := bufio.NewWriter(outputFile)
for {
fmt.Print("\n==========================\nВведите API ключи (или 'exit' для завершения): ")
scanner.Scan()
input := scanner.Text()
if input == "exit" {
break
}
if err := scanner.Err(); err != nil {
log.Fatalf("Ошибка ввода: %v", err)
}
apiKeys := strings.Fields(input)
for _, apiKey := range apiKeys {
gpt4oValid := checkAPIKey(apiKey, "gpt-4o")
gpt35Valid := checkAPIKey(apiKey, "gpt-3.5-turbo")
logOutput := fmt.Sprintf("\nAPI ключ: %s\nМодель GPT-4o: %s\nМодель GPT-3.5: %s\n",
apiKey, resultText(gpt4oValid), resultText(gpt35Valid))
fmt.Print(logOutput)
if gpt4oValid || gpt35Valid {
writer.WriteString(fmt.Sprintf("API ключ: %s\nМодель GPT-4o: %s\nМодель GPT-3.5: %s\n",
apiKey, resultText(gpt4oValid), resultText(gpt35Valid)))
writer.Flush()
}
}
}
}
func resultText(valid bool) string {
if valid {
return "действителен"
}
return "недействителен"
}
// Функция для проверки API ключа OpenAI
func checkAPIKey(apiKey string, model string) bool {
payload := map[string]interface{}{
"model": model,
"messages": []map[string]string{{"role": "user", "content": "Тестовое сообщение"}},
"max_tokens": 10,
}
jsonPayload, _ := json.Marshal(payload)
req, _ := http.NewRequest("POST", "https://api.openai.com/v1/chat/completions", bytes.NewBuffer(jsonPayload))
req.Header.Set("Authorization", fmt.Sprintf("Bearer %s", apiKey))
req.Header.Set("Content-Type", "application/json")
resp, err := http.DefaultClient.Do(req)
if err != nil {
log.Printf("Ошибка при проверке API ключа %s для модели %s: %v", safeKey(apiKey), model, err)
return false
}
defer resp.Body.Close()
if resp.StatusCode == 200 {
return true
}
log.Printf("Ошибка проверки ключа: %s для модели %s - %s", safeKey(apiKey), model, resp.Status)
return false
}
// Функция для скрытия ключа при выводе
func safeKey(key string) string {
if len(key) > 8 {
return key[:4] + "..." + key[len(key)-4:]
}
return key
}
17 Oct, 21:25
sudo apt install dkms build-essential libelf-dev linux-headers-$(uname -r) git
git clone https://github.com/morrownr/8814au.git
cd 8814au
make
sudo make install
sudo modprobe 8814au
17 Oct, 10:24
12 Oct, 11:33
12 Oct, 11:24
05 Oct, 11:46
04 Oct, 10:07
04 Oct, 09:27
03 Oct, 16:51
01 Oct, 08:53
29 Sep, 05:16