Skip to content
KitploitKITPLOIT
StrumentiBlog
Invia
StrumentiBlog
Invia

Strumenti di Hacking, PenTest e Cybersecurity per il tuo Arsenale di Sicurezza!

Kitploit è una directory di strumenti di hacking, cybersecurity e pentesting. Scopri gli ultimi aggiornamenti dei progetti per trovare vulnerabilità, analizzare sistemi, automatizzare i test e rafforzare la tua sicurezza.

··Feed·Contatto·Privacy·© 2026 Kitploit

Directory degli strumenti

Categorie

Vedi tutte le categorie
Loading categories
Retrofit-1 — retrofit con CVE-2018-1000844 | Kitploit
Strumenti/GitHubGitHub/epicosy/retrofit-1
Utilità GenericheAnalisi delle VulnerabilitàTest di Sicurezza delle API
GitHubepicosy/retrofit-1

Retrofit-1

retrofit con CVE-2018-1000844

Vedi Repository
2 anni faNon ancora revisionato

Più Popolari

Vedi tutti →

Scopri gli strumenti più utilizzati dalla nostra community.

Esplora tutti gli strumenti

Sfoglia la nostra collezione di strumenti

Vedi tutti gli strumenti →
Condividi

Retrofit

Client HTTP type-safe per Android e Java di Square, Inc.

Per maggiori informazioni consulta il sito web.

Scarica

Scarica l'ultimo JAR o tramite Maven:

root@kitploit:~
<dependency>
  <groupId>com.squareup.retrofit2</groupId>
  <artifactId>retrofit</artifactId>
  <version>2.4.0</version>
</dependency>

o Gradle:

root@kitploit:~
implementation 'com.squareup.retrofit2:retrofit:2.4.0'

Gli snapshot della versione in sviluppo sono disponibili nel repository snapshots di Sonatype.

Retrofit richiede almeno Java 7 o Android 2.3.

ProGuard

Se stai usando ProGuard devi aggiungere le seguenti opzioni:

root@kitploit:~
# Retain generic type information for use by reflection by converters and adapters.
-keepattributes Signature
# Retain service method parameters.
-keepclassmembernames,allowobfuscation interface * {
    @retrofit2.http.* <methods>;
}
# Ignore annotation used for build tooling.
-dontwarn org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement

Potresti anche aver bisogno di regole per OkHttp e Okio che sono dipendenze.

Licenza

root@kitploit:~
Copyright 2013 Square, Inc.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Scarica lo strumento