Example #1
0
void ntlm_output_restriction_encoding(NTLM_CONTEXT* context)
{
	PStream s;
	AV_PAIR* restrictions = &context->av_pairs->Restrictions;

	BYTE machineID[32] =
		"\x3A\x15\x8E\xA6\x75\x82\xD8\xF7\x3E\x06\xFA\x7A\xB4\xDF\xFD\x43"
		"\x84\x6C\x02\x3A\xFD\x5A\x94\xFE\xCF\x97\x0F\x3D\x19\x2C\x38\x20";

	restrictions->value = malloc(48);
	restrictions->length = 48;

	s = PStreamAllocAttach(restrictions->value, restrictions->length);

	StreamWrite_UINT32(s, 48); /* Size */
	StreamZero(s, 4); /* Z4 (set to zero) */

	/* IntegrityLevel (bit 31 set to 1) */
	StreamWrite_UINT8(s, 1);
	StreamZero(s, 3);

	StreamWrite_UINT32(s, 0x00002000); /* SubjectIntegrityLevel */
	StreamWrite(s, machineID, 32); /* MachineID */

	PStreamFreeDetach(s);
}
Example #2
0
void ntlm_output_channel_bindings(NTLM_CONTEXT* context)
{
    PStream s;
    AV_PAIR* ChannelBindings = &context->av_pairs->ChannelBindings;

    ChannelBindings->value = (BYTE*) malloc(48);
    ChannelBindings->length = 16;

    s = PStreamAllocAttach(ChannelBindings->value, ChannelBindings->length);

    StreamZero(s, 16); /* an all-zero value of the hash is used to indicate absence of channel bindings */

    PStreamFreeDetach(s);
}
Example #3
0
void ntlm_output_target_name(NTLM_CONTEXT* context)
{
    PStream s;
    AV_PAIR* TargetName = &context->av_pairs->TargetName;

    /*
     * TODO: No idea what should be set here (observed MsvAvTargetName = MsvAvDnsComputerName or
     * MsvAvTargetName should be the name of the service be accessed after authentication)
     * here used: "TERMSRV/192.168.0.123" in unicode (Dmitrij Jasnov)
     */
    BYTE name[42] =
        "\x54\x00\x45\x00\x52\x00\x4d\x00\x53\x00\x52\x00\x56\x00\x2f\x00\x31\x00\x39\x00\x32"
        "\x00\x2e\x00\x31\x00\x36\x00\x38\x00\x2e\x00\x30\x00\x2e\x00\x31\x00\x32\x00\x33\x00";

    TargetName->length = 42;
    TargetName->value = (BYTE*) malloc(TargetName->length);

    s = PStreamAllocAttach(TargetName->value, TargetName->length);

    StreamWrite(s, name, TargetName->length);

    PStreamFreeDetach(s);
}