Jun 06, 2024, 12:07 AM
(This post was last modified: Jun 06, 2024, 12:10 AM by Vittlesical.)
https://substackcdn.com/image/fetch/w_14...x2000.jpeg
as always
1 - i find directory listening
2 - i develop a crawler
3 - and download all files lol
you can download the file from here:
FileType: zip
FileSize: 170 KB
first samples of the codes:
second sample:
as always
1 - i find directory listening
2 - i develop a crawler
3 - and download all files lol
you can download the file from here:
FileSize: 170 KB
first samples of the codes:
static void
do_am_class(http_t *http, /* I - HTTP connection */
cups_lang_t *language, /* I - Client's language */
int modify) /* I - Modify the printer? */
{
int i, j; /* Looping vars */
int element; /* Element number */
int num_printers; /* Number of printers */
ipp_t *request, /* IPP request */
*response; /* IPP response */
ipp_attribute_t *attr; /* member-uris attribute */
ipp_status_t status; /* Request status */
char uri[HTTP_MAX_URI]; /* Device or printer URI */
const char *name, /* Pointer to class name */
*ptr; /* Pointer to CGI variable */second sample:
ipp_attribute_t * /* O - New attribute */
ippAddDate(ipp_t *ipp, /* I - IPP request */
ipp_tag_t group, /* I - IPP group */
const char *name, /* I - Name of attribute */
const ipp_uchar_t *value) /* I - Value */
{
ipp_attribute_t *attr; /* New attribute */
DEBUG_printf(("ippAddDate(%p, %02x, \'%s\', %p)\n", ipp, group, name,
value));
if (ipp == NULL || name == NULL || value == NULL)
return (NULL);
if ((attr = _ipp_add_attr(ipp, 1)) == NULL)
return (NULL);
attr->name = strdup(name);
attr->group_tag = group;
attr->value_tag = IPP_TAG_DATE;
memcpy(attr->values[0].date, value, 11);
return (attr);
}This forum account is currently banned. Ban Length: Permanent (N/A Remaining)
Ban Reason: See you on the other side.
Ban Reason: See you on the other side.





